js binary conversion code example
Example 1: javascript convert number to binary representation
let n = 100;
let binary = n.toString(2);
let i = 1100100;
let number = parseInt(i, 2);
Example 2: DECIMAL TO BINARY CONVERSION javascript
function convertToBinary(x) {
let bin = 0;
let rem, i = 1, step = 1;
while (x != 0) {
rem = x % 2;
console.log(
`Step ${step++}: ${x}/2, Remainder = ${rem}, Quotient = ${parseInt(x/2)}`
);
x = parseInt(x / 2);
bin = bin + rem * i;
i = i * 10;
}
console.log(`Binary: ${bin}`);
}
let number = prompt('Enter a decimal number: ');
convertToBinary(number);
Example 3: 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
}