Previously answered questions here said that this was the fastest way:
//nl is a NodeList var arr = Array.prototype.slice.call(nl);
In benc
faster and shorter :
// nl is the nodelist var a=[], l=nl.length>>>0; for( ; l--; a[l]=nl[l] );