How to calculate the LCM (Least Common Multiple) of 4 numbers in TypeScript

1 Answer

0 votes
function getLMC(a : number, b : number, c : number, d : number) {
    let lmc = Math.max(Math.max(Math.max(a, b), c), d);
             
    while(true) {
          if (lmc % a == 0 && lmc % b == 0 && lmc % c == 0 && lmc % d == 0) {
              return lmc;
          }
          lmc++;
    }
}
         
const a = 12;
const b = 15;
const c = 30;
const d = 50;

console.log("The LCM (Least Common Multiple) is: " + getLMC(a, b, c, d));
 
   
     
     
/*
run:
     
"The LCM (Least Common Multiple) is: 300" 
     
*/

 



answered Aug 2, 2022 by avibootz
...