Answers for "prg to javascript binary converter"

14

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
0

how to convert string into binary in javascript

// Text to Binary
function text2Binary(string) {
    return string.split('').map(function (char) {
        return char.charCodeAt(0).toString(2);
    }).join(' ');
}
text2Binary("Hello World");
Posted by: Guest on January-08-2022

Code answers related to "prg to javascript binary converter"

Code answers related to "Javascript"

Browse Popular Code Answers by Language