-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path6_arrays.js
411 lines (320 loc) · 15 KB
/
6_arrays.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
//* ======================================
//* ARRAYS IN JAVASCRIPT
//* =====================================
//! Iterable - object where you can use the for-of loop
//! Array-like object - Any object with length property and use indexes to access items
//! Arrays as Objects: Arrays in JavaScript are a specific type of object that has numeric keys (indices) and a length property. The indices are automatically maintained, and the length property is automatically updated when you add or remove elements from the array.
//! typeof Operator: The typeof operator in JavaScript returns "object" for both arrays and regular objects.
//* JavaScript Array is a data structure that allows you to store and organize multiple values within a single variable. It is a versatile and dynamic object. It can hold various data types, including numbers, strings, objects, and even other arrays. Arrays in JavaScript are zero-indexed i.e. the first element is accessed with an index 0, the second element with an index of 1, and so forth.
//* ======================================
//* Creating Arrays:
//* =====================================
//? Arrays in JavaScript can be created using the Array constructor or with array literals (square brackets []).
//? Using Array constructor
// let fruits = new Array("apple", "orange", "banana")
// console.log(fruits);
//? Using array literal
// let fruits = ["apple", "orange", "banana"];
// console.log(fruits);
//? we can also create an empty array
// let arr = [];
// console.log(typeof arr);
//* ======================================
//* Accessing Elements:
//* =====================================
//?👉 Accessing Elements: Array elements are accessed using zero-based indices.
// let fruits = ["apple", "orange", "banana", 1];
// console.log(fruits[0]);
// console.log(fruits[3]);
// console.log(fruits["apple"]); //undefined
//* ======================================
//* Modifying Elements:
//* =====================================
//?👉 Modifying Elements: You can modify array elements by assigning new values to specific indices.
// let fruits = ["apple", "orange", "banana"];
// fruits[2]="mango";
// console.log(fruits);
//* =============================================
//* Array Traversal / Iterating Over Arrays
//* ============================================
//?👉 Array Traversal / Iterating Over Arrays
// let fruits = ["apple", "orange", "mango", "grapes", "banana"];
//? 1: for of loop , also known as iterable
//* for...of Loop: The for...of loop is used to iterate over the values of an iterable object, such as arrays, strings, or other iterable objects.
// for (let item of fruits) {
// console.log(item);
// }
// for (let item = 0; item < fruits.length; item++) {
// console.log(fruits[item]);
// }
//? 2: for in loop
//* for...in Loop: The for...in loop is used to iterate over the properties (including indices) of an object.
// for (let item in fruits) {
// console.log(item);
// }
// ? 3: forEach Method
//* The arr.forEach() method calls the provided function once for each element of the array. The provided function may perform any kind of operation on the elements of the given array.
// const myForEachArr = fruits.forEach((curElem, index, arr) => {
// return `${curElem} ${index}`;
// // console.log(arr);
// });
// console.log(myForEachArr);
// ? 4: map function
//* map() creates a new array from calling a function for every array element. map() does not change the original array.
// const myMapArr = fruits.map((curElem, index, arr) => {
// return ` my fav fruit is ${curElem} `;
// // console.log(arr);
// });
// console.log(myMapArr);
// console.log(fruits);
//todo Practice Time
//! write a program to Multiply each element with 2
// const numbers = [1, 2, 3, 4, 5];
// // forEach - Performs an action on each element
// // map - Creates a new array with transformed elements
// numbers.forEach((curElem) => {
// console.log(curElem * 2);
// // Performs an action on each element
// });
// const doubleValue = numbers.map((curElem) => {
// return curElem * 2;
// // Creates a new array with transformed elements
// });
// console.log(doubleValue);
//* Key Differences
//! Return Value:
//? forEach: It doesn't return a value. The forEach method is used for iterating over the elements of an array and performing a side effect, such as modifying the array or performing a task for each element.
//? map: It returns a new array containing the results of applying a function to each element in the original array. The original array remains unchanged.
//! Chaining:
//? forEach: It doesn't return a value, so it cannot be directly chained with other array methods.
//? map: Since it returns a new array, you can chain other array methods after using map.
//* Use Case:
//? forEach: Used when you want to iterate over the array elements and perform an action on each element, but you don't need a new array.
//? map: Used when you want to create a new array based on the transformation of each element in the original array.
//* ==========================================================================
//* How to Insert, Add, Replace and Delete Elements in Array(CRUD) - p1
//* ==========================================================================
//? 👉 How to Insert, Add, Replace and Delete Elements in Array(CRUD)
// let fruits = ["apple", "orange", "mango", "grapes", "banana"];
//? 1: push(): Method that adds one or more elements to the end of an array.
// console.log(fruits.push("guava"));
// console.log(fruits);
// The push() method returns the new length.
//? 2: pop(): Method that removes the last element from an array.
// console.log(fruits.pop());
// console.log(fruits);
//? 3: unshift(): Method that adds one or more elements to the beginning of an array.
// console.log(fruits.unshift("guava"));
// console.log(fruits);
//? 4: shift(): Method that removes the first element from an array.
// console.log(fruits.shift());
// console.log(fruits);
//* ==========================================================================
//* what if, we want to add or remove anywhere in an elements - p2
//* ==========================================================================
//? The splice() method of Array instances changes the contents of an array by removing or replacing existing elements and/or adding new elements in place
//* syntax
//? splice(start, deleteCount, item1, item2, /* …, */ itemN)
// let fruits = ["apple", "orange", "banana", "mango"];
// fruits.splice(1,1,"grapes");
// console.log(fruits);
//! what if you want to add the element at the end
// fruits.splice(-1,0,"grapes");
// fruits.splice(fruits.length,0,"grapes");
//fruits.splice(1,0,"grapes");
// console.log(fruits);
//* =========================================
//* Searching in an Array
//* =========================================
//?👉 Searching and Filter in an Array
//? For Search we have - indexOf, lastIndexOf & includes
// const numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9];
//?1: indexOf Method: The indexOf method returns the first index at which a given element can be found in the array, or -1 if it is not present.
// syntax
// indexOf(searchElement);
// indexOf(searchElement, fromIndex);
// console.log(numbers.indexOf(4));
// console.log(numbers.indexOf(4,5));
//? 2: lastIndexOf Method: The lastIndexOf() method of Array instances returns the last index at which a given element can be found in the array, or -1 if it is not present. The array is searched backwards, starting at fromIndex.
// const numbers = [1, 2, 3, 6, 4, 5, 6, 7, 8, 9];
// const result = numbers.indexOf(6);
// console.log(result);
// const result1 = numbers.lastIndexOf(6);
// console.log(result1);
// const result = numbers.lastIndexof(6,5);
// console.log(result);
//? 3: The includes method checks whether an array includes a certain element, returning true or false.
// Syntax
// includes(searchElement)
// includes(searchElement, fromIndex)
// const numbers=[1,2,3,6,4,5,6,7,8,9];
// const result = numbers.includes(5);
// console.log(result);
//todo Challenge time
// 1: Add Dec at the end of an array?
// 2: What is the return value of splice method?
// 3: Update march to March (update)?
// 4: Delete June from an array?
const months = ["Jan", "march", "April", "June", "July"];
//1
// months.splice(months.length,0,"Dec");
// console.log(months);
//2
//When used to add elements, the splice method returs an empty array([]).
//3
// const indexToUpdate = months.indexOf("march");
// months.splice(indexToUpdate,1,"March");
// console.log(months);
//4
// const indexToDelete = months.indexOf("June");
// months.splice(indexToDelete,1);
// console.log(months);
//* =========================================
//* Filter in an Array
//* =========================================
//? Search + Filter
// const numbers = [1, 2, 3, 4, 5, 4, 6, 7, 8, 6, 9];
//? 1: find Method: The find method is used to find the first element in an array that satisfies a provided testing function. It returns the first matching element or undefined if no element is found.
// const result = numbers.find((curElem) => {
// return curElem>6;
// });
// console.log(result);
//? 2: findIndex Method: The findIndex() method of TypedArray instances returns the index of the first element in a typed array that satisfies the provided testing function. If no elements satisfy the testing function, -1 is returned.
// const numbers = [1, 2, 3, 4, 5, 4, 6, 7, 8, 6, 9];
// const result1 = numbers.map((curElem) => curElem * 5);
// console.log(result1);
// const result2 = result1.findIndex((curElem) => {
// return curElem>10;
// });
// console.log(result2);
//* 3: filter Method: The filter method creates a new array with all elements that pass the test implemented by the provided function.
// syntax:
//? filter(callbackFn)
//? filter(callbackFn, thisArg)
// const numbers = [1, 2, 3, 4, 5, 4, 6, 7, 8, 6, 9];
// const result = numbers.filter((curElem) => {
// return curElem>3;
// });
// console.log(result);
// UseCase: In E-commerce website when we want to Remove or delete any product from addToCart page.
//! Ex. le'ts say user wants to delete value 6.
// let value = 6;
// const numbers = [1, 2, 3, 4, 6, 5, 6, 7, 8, 9];
// let updatedCart = numbers.filter((curElem)=>{
// return curElem !== value;
// });
// console.log(updatedCart);
// Practice time
// !Example 2: Filtering Products by Price
// const products = [
// { name: "Laptop", price: 1200 },
// { name: "Phone", price: 800 },
// { name: "Tablet", price: 300 },
// { name: "Smartwatch", price: 150 },
// ];
// Filter products with a price less than or equal to 500
// const filterProducts = products.filter((curElem)=>{
// // console.log(curElem.price>300) ;
// return curElem.price>300;
// });
// console.log(filterProducts);
// //! Filter unique values
// const numbers = [1, 2, 3, 4, 6, 5, 6, 7, 8, 9];
// let uniqueValues = numbers.filter((curElem,index,arr) => {
// // console.log(index);
// // console.log(arr.indexOf(curElem));
// return arr.indexOf(curElem) === index;
// });
// console.log(uniqueValues);
// console.log([...new Set(numbers)]);
//* =========================================
//* How to Sort and Compare an Array
//* =========================================
//? How to Sort and Compare an Array
//? Sorting an Array: The sort method sorts the elements of an array in place and returns the sorted array. By default, it sorts elements as strings.
// const fruits = ["Banana", "Apple", "Orange", "Mango"];
// fruits.sort();
// console.log(fruits);
//? compare callback function
// syntax
// const sortedNumbers = numbers.sort((a, b) => a - b);
// if(a>b) return 1 => switch the order
// if(b>a) return -1 => keep the order
// numbers.sort((a, b) => {
// if (a > b) return -1;
// if (b > a) return 1;
// });
// console.log(numbers);
//? For ascending order
// const sortedNumbers = numbers.sort((a, b) => {
// if (a > b) {
// return 1;
// } else if (b > a) {
// return -1;
// }
// });
//? For descending order
// const sortedNumbers = numbers.sort((a, b) => {
// if (a > b) {
// return -1;
// } else if (b > a) {
// return 1;
// }
// });
//* =========================================
//* Very Important Array Methods
//* =========================================
//? Map(), Filter(), Reduce(),
// map() creates a new array from calling a function for every array element.
// map() does not execute the function for empty elements.
// map() does not change the original array.
// Original array of numbers
// const numbers = [1, 2, 3, 4, 5];
//! Using map to square each number and create a new array
// const numbers = [1, 2, 3, 4, 5];
// let result = numbers.map((curElem) => curElem * curElem);
// console.log(result);
//! 1: Using the map method, write a function that takes an array of strings and returns a new array where each string is capitalized.
// Original array of strings
// const words = ["APPLE", "banana", "cherry", "date"];
// const result = words.map((curElem) => {
// return curElem.toLowerCase();
// });
// console.log(result);
//! 2: Using the map method, write a function that takes an array of numbers and returns a new array where each number is squared, but only if it's an even number.
// Original array of numbers
// const numbers = [1, 2, 3, 4, 5];
// const result = numbers
// .map((curElem) => {
// if (curElem % 2 === 0) {
// return curElem * curElem;
// }
// })
// .filter((curElem) => curElem !== undefined);
// console.log(result);
// const evenSquare = numbers
// .map((curNum) => (curNum % 2 === 0 ? curNum * curNum : undefined))
// .filter((curElem) => curElem !== undefined);
// console.log(evenSquare);
//! 3: Using the map method, write a function that takes an array of names and returns a new array where each name is prefixed with "Mr. ".
// const names = ["ram", "vinod", "laxman"];
// const prefixName = names.map((curName) => `Mr. ${curName}`);
// console.log(prefixName);
//? Reduce method
// The reduce method in JavaScript is used to accumulate or reduce an array to a single value. It iterates over the elements of an array and applies a callback function to each element, updating an accumulator value with the result. The reduce method takes a callback function as its first argument and an optional initial value for the accumulator as the second argument.
// syntax
// array.reduce(function callback(accumulator, currentValue, index, array) {
// // Your logic here
// // Return the updated accumulator value
// }, initialValue);
// callback: A function that is called once for each element in the array.
// accumulator: The accumulated result of the previous iterations.
// currentValue: The current element being processed in the array.
// index (optional): The index of the current element being processed.
// array (optional): The array reduce was called upon.
// initialValue (optional): An initial value for the accumulator. If not provided, the first element of the array is used as the initial accumulator value.
// const productPrice = [100, 200, 300, 400, 500];
// const totalPrice = productPrice.reduce((accum, curElem) => {
// return accum + curElem;
// }, 0);
// console.log(totalPrice);