Fastest way to convert JavaScript NodeList to Array? Previously answered questions here said that this was the fastest way: //nl is a NodeList var arr = Array.prototype.slice.call(nl); In benchmarking on my browser I have found that it... May 15, 2022 0 Comments