Answers for "JavaScript function to compute the greatest common divisor (GCD) of two positive integers."

8

javascript gcd

const gcd = (a, b) => b === 0 ? a : gcd(b, a % b);

// Example
gcd(10, 15);    // 5
Posted by: Guest on July-03-2020

Code answers related to "JavaScript function to compute the greatest common divisor (GCD) of two positive integers."

Code answers related to "Javascript"

Browse Popular Code Answers by Language