How to convert negative integer to binary in Node.js

1 Answer

0 votes
function num2bin(num) {
    return (num >>> 0).toString(2);
}
    
console.log(num2bin(-1));
 
console.log(num2bin(-256));

console.log(num2bin(-512));
 
 
 
 
/*
run:
    
11111111111111111111111111111111
11111111111111111111111100000000
11111111111111111111111000000000
    
*/

 



answered Jan 12, 2023 by avibootz

Related questions

1 answer 134 views
1 answer 130 views
1 answer 120 views
1 answer 152 views
...