mdn filter() code example

Example 1: angular array filter typescript

ngOnInit() {
  this.booksByStoreID = this.books.filter(
          book => book.store_id === this.store.id);
}

Example 2: .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 3: 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 4: filter typescript

this.booksByStoreID = this.books.filter(book => book.store_id === this.store.id);

Example 5: 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;
};