smallestCommons([1, 5])
should return a number.
testString: assert.deepEqual(typeof smallestCommons([1, 5]), 'number');
- text: smallestCommons([1, 5])
should return 60.
testString: assert.deepEqual(smallestCommons([1, 5]), 60);
- text: smallestCommons([5, 1])
should return 60.
testString: assert.deepEqual(smallestCommons([5, 1]), 60);
- text: smallestCommons([2, 10])
should return 2520.
testString: assert.deepEqual(smallestCommons([2, 10]), 2520);
- text: smallestCommons([1, 13])
should return 360360.
testString: assert.deepEqual(smallestCommons([1, 13]), 360360);
- text: smallestCommons([23, 18])
should return 6056820.
testString: assert.deepEqual(smallestCommons([23, 18]), 6056820);
```