6 ms·
I hope you don't use that since it randomly returns either an element or a list of elements, so you'd have to also add an if/else every time you use it. This i
by bfred_it 6y ago
I hope you don't use that since it randomly returns either an element or a list of elements, so you'd have to also add an if/else every time you use it.
This is my go-to:
const $ = document.querySelector.bind(document);
const $$ = document.querySelectorAll.bind(document);
Tip: browser consoles already have these shortcuts, except $$ returns an actual array there instead of a NodeList.