UtilsgcdOn this pagegcdexamples 计算结果: 获取最大公约数 function gcd(a, b) { return b === 0 ? a : gcd(b, a % b);}