JavaScript function to compute the greatest common divisor (GCD) of two positive integers. code example
Example: javascript gcd
const gcd = (a, b) => b === 0 ? a : gcd(b, a % b);
// Example
gcd(10, 15); // 5
const gcd = (a, b) => b === 0 ? a : gcd(b, a % b);
// Example
gcd(10, 15); // 5