/fun-arrays

Functional Array method exercise

Primary LanguageJavaScript

Fun Arrays

Functional Array method exercise

Read the instructions which are comments in the file: array-methods.js, e.g.

/*
  create an array with accounts from bankBalances that are
  greater than 100000.00
  assign the resulting array to `hundredThousandairs`
*/

var hundredThousandairs = null;

Fulfill the requirements using iterative Array methods.

Getting Started

  1. Clone this repository and change your current working directory to this repository
  2. Install all dependencies by running the command: npm install
  3. Your work will be done in the file named: array-methods.js
  4. Run your tests with the command: npm test
  5. Commit your code after each test passes.

References

Making Arrays More Functional