|
| 1 | +// `.filter()` |
| 2 | + |
| 3 | +// What |
| 4 | +// - .filter() is a built-in method for arrays in JavaScript. It creates a new array containing only the elements that pass a test implemented by a provided function. |
| 5 | +// - It acts as a filtering mechanism, selecting elements from the original array based on a specific condition. |
| 6 | + |
| 7 | +// Why |
| 8 | +// - It offers a concise and efficient way to filter elements from an array based on a custom criteria. |
| 9 | +// - It avoids the need for manual looping and conditional statements within the loop, leading to cleaner code. |
| 10 | + |
| 11 | +// How |
| 12 | +// - You provide a callback function to .filter(). This function is called for each element in the original array. |
| 13 | +// - The callback function takes a single argument, which is the current element being processed in the iteration. |
| 14 | +// - The callback function should return a true value if the element should be included in the new filtered array, and false otherwise. |
| 15 | + |
| 16 | +// Syntax |
| 17 | +// const newArray = originalArray.filter(callbackFunction); |
| 18 | + |
| 19 | +// Example |
| 20 | + |
| 21 | +const array = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; |
| 22 | + |
| 23 | +// const number = array.filter((element) => { |
| 24 | +// return element > 5; |
| 25 | +// }); |
| 26 | +const newNumber = array.filter((element) => element > 5); |
| 27 | +console.log(newNumber); |
| 28 | + |
| 29 | +const books = [ |
| 30 | + { title: "Book One", genre: "Fiction", publish: 1981, edition: 2004 }, |
| 31 | + { title: "Book Two", genre: "Non-Fiction", publish: 1992, edition: 2008 }, |
| 32 | + { title: "Book Three", genre: "History", publish: 1999, edition: 2007 }, |
| 33 | + { title: "Book Four", genre: "Non-Fiction", publish: 1989, edition: 2010 }, |
| 34 | + { title: "Book Five", genre: "Science", publish: 2009, edition: 2014 }, |
| 35 | + { title: "Book Six", genre: "Fiction", publish: 1987, edition: 2010 }, |
| 36 | + { title: "Book Seven", genre: "History", publish: 1986, edition: 1996 }, |
| 37 | + { title: "Book Eight", genre: "Science", publish: 2011, edition: 2016 }, |
| 38 | + { title: "Book Nine", genre: "Non-Fiction", publish: 1981, edition: 1989 }, |
| 39 | +]; |
| 40 | + |
| 41 | +let userBook = books.filter((book) => book.genre === "History"); |
| 42 | +console.log(userBook); |
| 43 | + |
| 44 | +userBook = books.filter( |
| 45 | + (book) => book.edition >= 2000 && book.genre === "History" |
| 46 | +); |
| 47 | +console.log(userBook); |
0 commit comments