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 134 views
1 answer 135 views
1 answer 135 views
1 answer 212 views
1 answer 122 views
1 answer 142 views
...