How to calculate the total of all possible binary options of N bits in JavaScript

1 Answer

0 votes
let N = 4;
const total_bits = parseInt("1".repeat(N), 2) + 1; // "1".repeat(N) = 1111
console.log(total_bits);

N = 5
console.log(Math.pow(2, N));





/*
run:

16
32

*/

 



answered Aug 26, 2023 by avibootz

Related questions

...