Skip to content

Instantly share code, notes, and snippets.

@sntran
Created October 25, 2019 16:28
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