Skip to content

Instantly share code, notes, and snippets.

@khoahuynhdev
Last active April 3, 2019 04:29
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 khoahuynhdev/f98393e2384d7898b9105884845ef9f6 to your computer and use it in GitHub Desktop.
Save khoahuynhdev/f98393e2384d7898b9105884845ef9f6 to your computer and use it in GitHub Desktop.
Quick and easy to use
// Pseudo Jquery
const $ = document.querySelector.bind(document);
const $$ = document.querySelectorAll.bind(document);
// convert a number in decimal to binary
8..toString('2') // '1000'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment