js-assessment-answers icon indicating copy to clipboard operation
js-assessment-answers copied to clipboard

Results 29 js-assessment-answers issues
Sort by recently updated
recently updated
newest added

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

question

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...

question

Added answer for newly added test on the js-assessment repo.

new-answers

[These two tests](https://github.com/rmurphey/js-assessment/blob/ed9278f14b8ae1cf2dbd32f133e6052a5cf36b2d/tests/app/recursion.js#L85-L109) need solutions.

bug
new-answers

Per pull request [#86](https://github.com/rmurphey/js-assessment/pull/86)

new-answers

These are the solutions to the extra tasks that I recently created a pull request for.

new-answers

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...

enhancement

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...

enhancement