Skip to content

Instantly share code, notes, and snippets.

@ahbou
Created July 28, 2015 09:55
Show Gist options
  • Save ahbou/2ae337da800c5d916391 to your computer and use it in GitHub Desktop.
Save ahbou/2ae337da800c5d916391 to your computer and use it in GitHub Desktop.
// generic select function
const $ = selector => […document.querySelectorAll(selector)];
// usage
$(“div”).forEach(el => el.classList.add(“foo”));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment