Skip to content

Instantly share code, notes, and snippets.

@sntran
Created October 25, 2019 16:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sntran/e0c543e2560fbcd17489954f052df26e to your computer and use it in GitHub Desktop.
Save sntran/e0c543e2560fbcd17489954f052df26e to your computer and use it in GitHub Desktop.
jQuery-like $
const $ = (selector, parent = document) => Array.from(parent.querySelectorAll(selector));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment