How to convert negative integer to binary in JavaScript

1 Answer

0 votes
function num2bin(num) {
    return (num >>> 0).toString(2);
}
    
console.log(num2bin(-1));
 
console.log(num2bin(-256));
 
console.log(num2bin(-1024));
 
 
 
 
/*
run:
    
"11111111111111111111111111111111"
"11111111111111111111111100000000"
"11111111111111111111110000000000"
    
*/
  

 



answered Jan 11, 2023 by avibootz
edited Jan 12, 2023 by avibootz

Related questions

1 answer 172 views
1 answer 135 views
1 answer 139 views
1 answer 212 views
1 answer 123 views
2 answers 213 views
...