Implement basic list operations.
In functional languages list operations like length, map, and
reduce are very common. Implement a series of basic list operations,
without using existing functions.
Go through the setup instructions for Javascript to install the necessary dependencies:
https://exercism.io/tracks/javascript/installation
Install assignment dependencies:
$ npm installExecute the tests with:
$ npm testIn the test suites all tests but the first have been skipped.
Once you get a test passing, you can enable the next one by
changing xtest to test.
It's possible to submit an incomplete solution so you can see how others have completed the exercise.