GCD calculation for any two given integer.
npm install gcd-euclideansh
npm install gcd-euclidean
`
Usage
`js
const gcd = require('gcd-euclidean');
console.log(gcd(4, 12)); // Output: 4
console.log(gcd(15, 25)); // Output: 5
console.log(gcd(7, 3)); // Output: 1
`
Function
$3
Calculates the GCD of two integers a and b.
#### Parameters
- a (number): The first integer.
- b (number): The second integer.
#### Returns
- (number): The GCD of a and b`.