For example, if I do this:
var q = document.querySelectorAll; q(\'body\');
I get an \"Illegal invocation\" error in Chrome. I can\'t thin
One more concise solution:
const q=s=>document.querySelectorAll(s); q('body');