Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,907 questions

51,839 answers

573 users

How to convert int to binary in array with Node.js

1 Answer

0 votes
function toBinary(n, binaryNum)  { 
    let i = 0; 
    while (n > 0) { 
        binaryNum[i] = n % 2; 
        n = Math.floor(n / 2); 
        i++; 
    } 
    
    return i;
} 


let binaryNumber = new Array(32); 
const a = 23;
let s = "";

let i = toBinary(a, binaryNumber);
for (let j = i - 1; j >= 0; j--) {
    s += binaryNumber[j];
}
console.log(s);
 
const b = 9863;

s = "";
i = toBinary(b, binaryNumber);
for (let j = i - 1; j >= 0; j--) {
    s += binaryNumber[j];
}
console.log(s);




/*
run:

10111
10011010000111

*/

 



answered Nov 25, 2023 by avibootz

Related questions

1 answer 148 views
1 answer 116 views
116 views asked Nov 25, 2023 by avibootz
1 answer 118 views
1 answer 182 views
1 answer 80 views
...