how to filter an array js code example
Example 1: filter javascript array
var words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present'];
const result = words.filter(word => word.length > 6);
console.log(result);
Example 2: filter in js
const filterThisArray = ["a","b","c","d","e"]
console.log(filterThisArray)
const filteredThatArray = filterThisArray.filter((item) => item!=="e")
console.log(filteredThatArray)
Example 3: javascript array filter
run.addEventListener("click", function () {
let array = [];
people.forEach((elem) => {
if (elem.age > 18) {
array.push(elem);
} else {
("");
}
});
console.log(array);
});