const $ = document.querySelector;
// TypeError: Illegal invocationconst el = $('.some-element');
const $ = document.querySelector.bind(document);// Or:const $ = (...args) => document.querySelector(...args);