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 129 views
1 answer 125 views
1 answer 115 views
1 answer 148 views
...