Calculates the greatest common divisor between two or more numbers
gcd(8, 36); // 4
gcd(...[12, 8, 32]); // 4
Rest
Generated using TypeDoc
Calculates the greatest common divisor between two or more numbers
Example
Example