Previously answered questions here said that this was the fastest way:
//nl is a NodeList var arr = Array.prototype.slice.call(nl);
In benc
Here's a new cool way to do it using the ES6 spread operator:
let arr = [...nl];