최대공약수정수론2020-12-212개 이상의 수의 공약수 중에서 최대인 수const getGCD = (n, m) => { return m ? getGCD(m, n % m) : n; };입력const n = 2;const m = 4;출력2