javsacript filter 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 out arrays js
let newArray = array.filter(function(item) {
return condition;
});
Example 3: array.filter in javascript
const array = [2, 3, 4]
if (event.target.checked) {
newValue.push(option);
} else {
newValue = newValue.filter(item => item.id != option.id);
}
const words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present'];
const result = words.filter(word => word.length > 6);
Example 4: filter an array in Javascript
1let greaterTen = [];2
3for (let i = 0; i<numbers.length; i++) {4 var currentNumber = numbers[i];5 if (currentNumber > 10) {6 greaterTen.push(currentNumber)7 }8}9
10console.log(greaterTen);