javascript gcd

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

// Example
gcd(10, 15);    // 5
Source

Also in JavaScript: