一、计算最大公约数
var gcd = (a,b)=>{ while(b!==0){ [a, b] = [b, a%b]; } return a; } console.log(gcd(8,4), gcd(8,3))
function scm(a,b){ return (a&&b)?(a*b)/gcd(a,b):0; } console.log(scm(0,0) , scm(8,4))