How to convert binary string to integer in JavaScript

2 Answers

0 votes
console.log(Number.parseInt('1111', 2));

const s = '0111';
console.log(Number.parseInt(s, 2));

console.log(Number.parseInt('0011', 2));



/*
run:
 
15
7
3
    
*/

 



answered Mar 13, 2020 by avibootz
0 votes
console.log(Number('0b1111', 2));

const s = '0b0111';
console.log(Number(s, 2));

console.log(Number('0b0011', 2));



/*
run:
 
15
7
3
    
*/

 



answered Mar 13, 2020 by avibootz
...