added explicit conversion to number for fibonacci solution

This commit is contained in:
Jamienorthman 2023-10-29 12:36:58 +01:00
parent 4a03e410bf
commit 80ca665767
2 changed files with 12 additions and 3 deletions

View File

@ -1,4 +1,13 @@
const fibonacci = function(count) {
const fibonacci = function(countArg) {
// checks argument's type and makes sure we use
// a number throughout rest of function.
let count
if (typeof countArg !== 'number') {
count = parseInt(countArg)
} else {
count = countArg
}
if (count < 0) return "OOPS";
if (count == 0) return 0;
@ -14,4 +23,4 @@ const fibonacci = function(count) {
return firstPrev;
};
module.exports = fibonacci;
module.exports = fibonacci;

View File

@ -34,4 +34,4 @@ describe('fibonacci', () => {
test('DOES accept strings', () => {
expect(fibonacci("8")).toBe(21);
});
});
});