Contact: aviboots(AT)netvision.net.il
39,895 questions
51,826 answers
573 users
function get_bits(n) { return (n >>> 0).toString(2); } let n = 162; console.log(get_bits(n)); n ^= (1 << 0); n ^= (1 << 1); console.log(get_bits(n)); /* run: 10100010 10100001 */