--- title: Greatest common divisor id: 5a23c84252665b21eecc7e82 challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof gcd=="function","gcd should be a function.");' - text: '' testString: 'assert(typeof gcd(24,36)=="number","gcd(24,36) should return a number.");' - text: '' testString: 'assert.equal(gcd(24,36),12,"gcd(24,36) should return 12.");' - text: '' testString: 'assert.equal(gcd(30,48),6,"gcd(30,48) should return 6.");' - text: '' testString: 'assert.equal(gcd(10,15),5,"gcd(10,15) should return 5.");' - text: '' testString: 'assert.equal(gcd(100,25),25,"gcd(100,25) should return 25.");' - text: '' testString: 'assert.equal(gcd(13,250),1,"gcd(13,250) should return 1.");' - text: '' testString: 'assert.equal(gcd(1300,250),50,"gcd(1300,250) should return 50.");' ```
## Challenge Seed
```js function gcd(a, b) { // Good luck! } ```
## Solution
```js // solution required ```