javascript array filter with index code example
Example 1: .filter js
const words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present'];
const result = words.filter(word => word.length > 6);
console.log(result);
// expected output: Array ["exuberant", "destruction", "present"]
Example 2: js filter items by index
let newArray = arr.filter(callback(element[, index, [array]])[, thisArg])