binom
should be a function.
testString: assert(typeof binom === 'function');
- text: binom(5,3)
should return 10.
testString: assert.equal(binom(5, 3), 10);
- text: binom(7,2)
should return 21.
testString: assert.equal(binom(7, 2), 21);
- text: binom(10,4)
should return 210.
testString: assert.equal(binom(10, 4), 210);
- text: binom(6,1)
should return 6.
testString: assert.equal(binom(6, 1), 6);
- text: binom(12,8)
should return 495.
testString: assert.equal(binom(12, 8), 495);
```