Skip to content

Commit a5f0f4c

Browse files
feat: add filter
1 parent aa14d6a commit a5f0f4c

File tree

2 files changed

+64
-3
lines changed

2 files changed

+64
-3
lines changed

19_Iterations/7_for_each_loop.js 19_Iterations/7_for_each.js

+17-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
// What
44
// - The forEach() method is a built-in function in JavaScript that allows you to iterate over the elements of an array or array-like object and perform a specified action for each element. It provides a convenient way to iterate through the elements without the need for explicit loop constructs like for or while loops.
55

6-
// Note
7-
// - The forEach() method accepts a callback function as its argument, which is invoked for each element in the array. The callback function takes three parameters: the current element being processed, the index of the current element, and the array or array-like object being iterated.
8-
96
// Syntax
107
// array.forEach(callback(currentValue, index, array) {
118
// Perform action on each element
@@ -56,3 +53,20 @@ const array1 = [
5653
array1.forEach((element) => {
5754
console.log(element.key1);
5855
});
56+
57+
// Note
58+
// - The forEach() method accepts a callback function as its argument, which is invoked for each element in the array. The callback function takes three parameters: the current element being processed, the index of the current element, and the array or array-like object being iterated.
59+
// - The forEach() method in JavaScript doesn't return a value itself. Here's a breakdown of why:
60+
61+
// Purpose of forEach()
62+
// - forEach() is designed to execute a provided function once for each element in an iterable object (like arrays).
63+
// - Its primary focus is to perform side effects within the callback function, such as modifying elements, logging information, or triggering other actions.
64+
65+
// Side Effects vs. Returning Values
66+
// - Side effects refer to actions that the callback function might perform within the loop iteration, such as changing values in the array, printing to the console, or making network requests.
67+
// - forEach() itself doesn't return anything after completing the loop. It simply executes the callback function for each element.
68+
69+
// Reasons Why It Doesn't Return
70+
// - Focus on Iteration: The core purpose of forEach() is to iterate and potentially modify the original array or perform actions based on each element. Returning a value wouldn't align with this primary goal.
71+
// - Conciseness and Readability: Keeping forEach() non-returning promotes cleaner code and avoids unintended side effects related to returning values from within the loop.
72+
// - Functional Programming Principles: forEach() aligns with functional programming principles, where functions should ideally avoid mutable side effects and focus on pure transformations.

19_Iterations/8_filer.js

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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

Comments
 (0)