Skip to content

Instantly share code, notes, and snippets.

@andreruffert
Last active November 24, 2015 10:35
Show Gist options
  • Save andreruffert/2a8340c46f23e5be01b2 to your computer and use it in GitHub Desktop.
Save andreruffert/2a8340c46f23e5be01b2 to your computer and use it in GitHub Desktop.
ES2015: simple DOM querying
const $ = (selector, context = document) => [...context.querySelectorAll(selector)];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment