Greatest Common DivisorTest this by calling:gcd(12,45)Function:const gcd = (a, b) => { if (b == 0) { return a; } else { return gcd(b, a % b); } };2 keywords1 dependent2 versionsgcdaime@everything-registry/sub-chunk-13161.0.12 years ago1.0.02 years ago