Last active
April 3, 2019 04:29
-
-
Save khoahuynhdev/f98393e2384d7898b9105884845ef9f6 to your computer and use it in GitHub Desktop.
Quick and easy to use
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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