Answers for "save data in binary with js"

1

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
0

string to binary javascript

// string to binary
parseInt(num.toString(2));

// binary to string
parseInt(num.toString(2), 2);
Posted by: Guest on June-29-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language