javascript number to binary string code example
Example 1: javascript convert number to binary
function dec2bin(dec){
return (dec >>> 0).toString(2);
}
dec2bin(1);
dec2bin(-1);
dec2bin(256);
dec2bin(-256);
Example 2: number to binary javascript
const convertNumberToBinary = n => {
let binary = (n >>> 0).toString(2).split('').sort().join('');
let number = parseInt(binary, 2);
return number;
}
Example 3: javascript convert to and from binary
const num = 7;
num.toString(2);
parseInt("111", 2);
Example 4: number to binary javascript
function convertNumberToBinary (num) {
return parseInt([...num.toString(2)].reverse().join(''), 2);
}
function convertNumberToBinary (num) {
return parseInt(num.toString(2).slice('').reverse().join(''), 2);
}
function convertNumberToBinary (num) {
let binary = (n >>> 0).toString(2).split('').sort().join('');
let number = parseInt(binary, 2);
return num;
}
Example 5: how to convert to binary in javascript
function bin(num) {
var binn = [];
var c;
while (num != 1) {
c = Math.floor(num / 2);
binn.unshift(num % 2);
num = c;
}
binn.unshift(1)
return binn
}