js-assessment-answers
js-assessment-answers copied to clipboard
thoughts? i think it would help the development of the answers (only one repo needed) i think it would also simplify the [js-koans project](https://github.com/ashleygwilliams/js-koans) i am working on
What do you think of having other flavors of the answers? Clearly labelled of course. for example: - answers using modern es6+ JavaScript syntax, - answers using current es5 syntax...
Added answer for newly added test on the js-assessment repo.
[These two tests](https://github.com/rmurphey/js-assessment/blob/ed9278f14b8ae1cf2dbd32f133e6052a5cf36b2d/tests/app/recursion.js#L85-L109) need solutions.
Per pull request [#86](https://github.com/rmurphey/js-assessment/pull/86)
These are the solutions to the extra tasks that I recently created a pull request for.
This is a pretty minor point, but there are some stylistic differences between js-assessment and these answers. The one that stood out to me is that in this app there's...
Currently, multiply can sometimes produce incorrect results. For instance, `multiply(3, 0.123002)` returns `0.36900599999999995` instead of the expected `0.369006`. I believe the problem is on [Line 35 of numbers.js](https://github.com/rmurphey/js-assessment-answers/blob/master/app/numbers.js#L35), where an...