hjavascrip filter code example
Example 1: javascript filter
const filtered = array.filter(item => {
return item < 20;
});
// An example that will loop through an array
// and create a new array containing only items that
// are less than 20. If array is [13, 65, 101, 19],
// the returned array in filtered will be [13, 19]
Example 2: filter javascript
function filter(array, filterfunc) {
let filteredArray = [];
for (let i = 0; i < array.length; i++) {
let result = filterfunc(array[i], i, array);
if (result) {
filteredArray.push(array[i]);
}
}
return filteredArray;
};