Skip to content

Instantly share code, notes, and snippets.

@jakedohm
Created May 28, 2019 15:52
Show Gist options
  • Save jakedohm/0ec99b1edecd63bfb2446ec5be2ea016 to your computer and use it in GitHub Desktop.
Save jakedohm/0ec99b1edecd63bfb2446ec5be2ea016 to your computer and use it in GitHub Desktop.
const $ = selector => document.querySelector(selector)
const $$ = selector => document.querySelectorAll(selector)
// $ returns a node (or null)
$('.nav').classList.add('open')
// $$ returns a NodeList (which is empty if no matching elements are found)
$$('ul > li > a').forEach($node => $node.style.background = 'red')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment