Status: Tags: Links: JavaScript Fundamentals
JavaScript Array Practices
Methods
- forEach
- Loops over elements in an array
- filter
- Returns a new array with elments that pass predicate function
- map
- Applies predicate function to all elements
- some
- Tests whether any element matches a given predicate function
- findIndex
- Finds position of first element
References: