Previously answered questions here said that this was the fastest way:
//nl is a NodeList var arr = Array.prototype.slice.call(nl);
In benc
With ES6, we now have a simple way to create an Array from a NodeList: the Array.from() function.
// nl is a NodeList let myArray = Array.from(nl)