angular filter array of objects in typescript code example
Example 1: typescript filter list by property
const object = {
firstAttribute: 'firstValue',
secondAttribute: 'secondValue'
};
objectList.filter(o -> o.firstAttribute === 'firstValue');
Example 2: filter typescript
this.booksByStoreID = this.books.filter(book => book.store_id === this.store.id);