How to convert negative integer to binary in TypeScript

1 Answer

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

 



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

Related questions

1 answer 148 views
1 answer 153 views
1 answer 149 views
1 answer 224 views
1 answer 135 views
1 answer 158 views
...