Last Updated: February 25, 2016
·
736
· k33g

the smartest js code snippet (from zepto)

cast dom nodes to array

function domSelector(selector) { 
    return [].slice.call(document.querySelectorAll(selector)); 
}

then, you can use forEach, filter, ...

see it in action : https://github.com/madrobby/zepto