Returns the least common multiple of two or more numbers
lcm(12, 7); // 84
lcm(...[1, 3, 4, 5]); // 60
Rest
Generated using TypeDoc
Returns the least common multiple of two or more numbers
Example
Example