Sha256: 88c6e2eea4f5fac154da9805fad1a5b465ea00a45be9b50b62bfe5df15811b66
Contents?: true
Size: 876 Bytes
Versions: 64
Compression:
Stored size: 876 Bytes
Contents
# List Ops 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. ## Setup Go through the setup instructions for JavaScript to install the necessary dependencies: http://exercism.io/languages/javascript ## Making the Test Suite Pass Execute the tests with: jasmine <exercise-name>.spec.js Replace `<exercise-name>` with the name of the current exercise. E.g., to test the Hello World exercise: jasmine hello-world.spec.js In many test suites all but the first test have been skipped. Once you get a test passing, you can unskip the next one by changing `xit` to `it`. ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
64 entries across 64 versions & 1 rubygems