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,938 questions

51,875 answers

573 users

How to multiply two numbers without using the multiple operator (*) in Node.js

1 Answer

0 votes
function multiply(a, b) {
    let mul = 0;
  
    // mul = a * b
    
    if (a == 0 || b == 0) {
        return 0;
    }
    
    for (let i = 1; i <= Math.abs(a); i++) {
        mul = mul + b;
    } 
    
    if (a < 0 && b < 0) {
        return Math.abs(mul);
    } else if (a < 0 || b < 0) {
        return -mul;
    }
    
    return mul;
}

const a = 4;
const b = 8;

console.log(a + " * " + b + " = " + multiply(a, b));

 
 
/*
run:
 
4 * 8 = 32
 
*/

 



answered Apr 4, 2024 by avibootz
edited Apr 4, 2024 by avibootz
...