Answers for "convert decimal to binary javascript w3schools"

8

javascript convert number to binary

function dec2bin(dec){
    return (dec >>> 0).toString(2);
}

dec2bin(1);    // 1
dec2bin(-1);   // 11111111111111111111111111111111
dec2bin(256);  // 100000000
dec2bin(-256); // 11111111111111111111111100000000
Posted by: Guest on March-27-2020
1

convert binary to decimal javascript

const binaryArrayToNumber = arr => {
    let len = arr.length
    let pow = []
    let decimal = []
    for(let i = 0; i <= len - 1; i++){
        pow.unshift(i)
    }
    arr.forEach((x,index) => {
        decimal.push(x*2**pow[index])
    })
    let toDecimal = decimal.reduce((acc, curr) => acc + curr, 0)
    return toDecimal
};
console.log(binaryArrayToNumber([1, 0, 1, 1]))
Posted by: Guest on June-15-2020

Code answers related to "convert decimal to binary javascript w3schools"

Code answers related to "Javascript"

Browse Popular Code Answers by Language