I\'m going to be running document.querySelectorAll() a whole lot, and would like a shorthand alias for it.
var queryAll = document.querySelectorAll queryAll
function x(expr) { return document.querySelectorAll(expr); }