JavaScript:实现欧几里得算法确定两个数的GCD算法 export function GetEuclidGCD (a, b) { if (typeof a !== 'number' || typeof b !== 'num