Appearance
function gcd(a, b): number;
Greatest common divisor. 最大公约数。
a
number
b
GCD / 最大公约数
gcd(12, 8) // => 4
1.0.0