Appearance
function lcm(a, b): number;
Least common multiple. 最小公倍数。
a
number
b
LCM / 最小公倍数
lcm(4, 6) // => 12
1.0.0