The Little Known Bitwise Operations and their Performance in JavaScript
Rahul R
62
Nice blog.
Two other hacks I can recall ..
let flr = ~~3.5 ; // floor of 3.5
let num = +’1.5' ; // converts string of number to number
Nice blog.
Two other hacks I can recall ..
let flr = ~~3.5 ; // floor of 3.5
let num = +’1.5' ; // converts string of number to number