-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patharrays.js
781 lines (600 loc) · 33.1 KB
/
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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
"use strict";
// TOPIC /////////////////////////////////////////////////////////////////////////////////////////////////////
// Arrays
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 1. What is an Array?
// + How do you create an empty array?
// + How do you create an array with items inside it?
// + How do you create an array with different data types in it?
// 2. How do you create an array?
// 3. How do you access items in an array?
// 4. How do you find the length of an array?
// 5. What is an array method?
// 6. How do you add elements to the beginning, middle, and end of an array?
// 7. How do you remove the first item in an array?
// 8. How do you create a new array from an exiting one?
// 9. How do you find primitive elements (i.e. strings, numbers, booleans, etc.) in an array?
// + How do you find primitve elements?
// + How do you find the last index of a given element?
// + How do you determine if an element exists in an array?
// 10. How do you find reference-type elements (i.e. objects, functions, etc.) in an array?
// + How do you find a reference type and return a specific element?
// 11. How do you remove an element from an array?
// + How to remove an element from the BEGINNING of an array?
// + How to remove an element from the MIDDLE of an array?
// + How to remove an element from the END of an array?
// 12. How do you empty an array?
// 13. How do you combine and slice an array?
// + How do you combine two arrays together?
// + How do you slice an array?
// + How do you copy objects in an array?
// 14. How do you use the spread operator?
// 15. How do you iterate over an array?
// 16. How do you join an array?
// + How do you split a string?
// 17. How do you sort an array?
// 18. How do you test elements of an array?
// + How do you use .every()
// + How do you use .some()
// 19. How do you filter an array based on search criteria?
// 20. How do you map an array?
// + How do you map an object?
// + How do you map an array with a function as a parameter?
// 21. How do you use reduce for an array?
// + How do you add an array WITHOUT .reduce()?
// + How do you add an array WITH .reduce()?
//
// NOTES ////////////////////////////////////////////////////////////////////////////////////////////////////
// 1. Useful overview of information on arrays taken from study, research, tutorials,
// mentor meetings, peer discussions, and good ole' fashioned curiosity. I've put the document in Question
// and Answer format for improved readability.
//
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
/*
Solving Array Problems
///////////////////////
--
*/
/*
1. What is an Array?
/////////////////
-- Arrays are used to store lists of items in JavaScript
-- An Array is a collection of variables of the same type organized under one name, where the individual variables
are denoted by numbers
-- Arrays are collections of things, like items or even other lists.
-- Arrays could be dealing with collections of emails, statistics, server logs, etc.
-- you can perform many options on arrays such as .pop, .slice, etc.
*/
/*
2. How do you create an array?
///////////////////////////
-- To create an array, simply declare a variable and assign empty brackets to it. (i.e. []).
-- Arrays can be created with 0 or more elements.
-- Items in the array are seperated by commas (i.e. ,).
-- if you use `const` to instantiate the variable, know that you CANNOT reassign
data types to something else (i.e. number to data type).
-- however, it is possible to MODIFY the content of the array (i.e. change a number
to another number), add or remove existing elements.
*/
// How do you create an empty array:
//==================================
let myFirstArray = []
console.log(myFirstArray); //-> []
// How do you create an array with items inside it:
//================================================
let myFirstFullArray = ['a', 'b', 'c'];
console.log(myFirstFullArray); //-> [ 'a', 'b', 'c' ]
// How do you create an array with different data types in it:
//============================================================
// string array function
// \ | |
let myFirstComplexArray = ['Hello', 25, ['foo', 'bar'], true, function() {console.log('howdy')}];
// | |
// number boolean
/*
3. How do you access items in an array?
///////////////////////////////////////
-- To access items in array, you need to acess by INDEX.
-- The index of an item is its position in an array.
-- Item index are ZERO-INDEXED, meaning the count starts at 0 and continues on for as many
items as there are in the array.
*/
// Index number: 0 1 2 3 4
// | | | | |
const howManyItems = ['item1', 'item2', 'item3', 'item4', 'item5'];
/*
-- to access items in an array, you simply call the name of the array and the item index number.
-- remember, the first item in the array is item 0 in the array.
*/
console.log(howManyItems[0]); //-> item1
console.log(howManyItems[4]); //-> item5
/*
4. How do you find the length of an array?
//////////////////////////////////////////
-- to find the length of an array, you simply attach the .length method to the array name you want.
*/
const longArray = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'];
console.log(longArray.length); //-> 10
/*
5. What is an array method?
///////////////////////////
-- an array method traverses and manipulates the array and the items.
-- since an array is an object, we can use both bracket AND dot-notation.
*/
/*
6. How do you add elements to the beginning, middle, and end of an array?
////////////////////////////////////////////////////////////////////////
-- in an array, you can add elements to the:
-- beginning (.unshift)
-- middle (.slice)
-- end (.push)
*/
/*
How do you add elements to the BEGINNING?
=========================================
-- to add elements to the beginning of an array, you use the .unshift method.
*/
const addToBeginning = ['apple', 'banana', 'carrot'];
console.log(`==> add elements to beginning with .unshift`);
console.log(addToBeginning); //-> [ 'apple', 'banana', 'carrot' ]
addToBeginning.unshift('avocado');
console.log(addToBeginning); //-> [ 'avocado', 'apple', 'banana', 'carrot' ]
/*
How do you add elements to the MIDDLE?
======================================
-- to add elements to the middle of an array, you use the .splice method.
-- using .splice, first consider the array you are inserting your element into:
0 1 2
| | |
const addToMiddle = ['apple', 'banana', 'carrot'];
-- there are 3 elements in the array.
-- Now suppose we want to insert the element 'kiwi' and 'orange' between 'banana' and 'carrot'.
-- we use dot-notation first with the name of the array, then .splice, then a few critical parameters:
-- parameter 1 = index of where we want to begin new element insertion.
-- parameter 2 = delete count of what you want to remove. We dont want to delete
anything, so we use 0.
-- parameter 3 = element(s) you want to add. You can add as many elements after if you want.
insertion start first element to insert at index of 2
\ |
addToMiddle.splice(2, 0, 'kiwi', 'orange');
\ \
delete count second element to insert at index of 3
-- in the .splice method above, we are saying that we want to insert at index of 2 (i.e. the element
you insert will be where the element 'carrot' currently is (i.e. 'carrot' = index of 2), while not
removing anything (i.e. 0), the elements 'kiwi' and 'orange'.
*/
const addToMiddle = ['apple', 'banana', 'carrot'];
console.log(`==> add elements to middle with .splice`);
console.log(addToMiddle); //-> [ 'apple', 'banana', 'carrot' ]
addToMiddle.splice(2, 0, 'kiwi', 'orange');
console.log(addToMiddle); //-> [ 'apple', 'banana', 'kiwi', 'orange', 'carrot' ]
/*
How do you add elements to the END?
===================================
-- to add elements to the end of an array, you use the .push method.
*/
const addToEnd = ['apple', 'banana', 'carrot'];
console.log(`==> add elements to end with .push`);
console.log(addToEnd); //-> [ 'apple', 'banana', 'carrot' ]
addToEnd.push('date');
console.log(addToEnd); //-> [ 'apple', 'banana', 'carrot', 'date' ]
/*
7. How do you remove the first item in an array?
////////////////////////////////////////////////
-- to remove the last item in an array, you use the .shift method.
*/
const removeFirstItem = ['axe', 'bat', 'cutlass'];
console.log(`==> Remove first element from array with .shift`);
console.log(removeFirstItem); //-> [ 'axe', 'bat', 'cutlass' ]
removeFirstItem.shift();
console.log(removeFirstItem); //-> [ 'bat', 'cutlass' ]
/*
8. How do you create a new array from an exiting one?
/////////////////////////////////////////////////////
-- to remove the last item in an array, you use the .slice method.
-- here, .slice uses TWO paramters:
-- new array start (i.e. index of 2 = charlie)
-- new array end (i.e. index of 5 = foxtrot).
-- note that foxtrot is NOT included in the new array since it is where the new array officially ends.
*/
const createNewArray = ['alpha', 'beta', 'charlie', 'delta', 'echo', 'foxtrot'];
console.log(`==> Create a new array from an existing one with .slice`);
console.log(createNewArray); //-> [ 'alpha', 'beta', 'charlie', 'delta', 'echo', 'foxtrot' ]
const newCreatedArray = createNewArray.slice(2,5);
console.log(newCreatedArray); //-> [ 'charlie', 'delta', 'echo' ]
/*
9. How do you find primitive elements in an array?
/////////////////////////////////////////////////
-- finding elements in an array depends on whether you are looking for primitive (i.e. strings, numbers, booleans, etc.)
or reference types (functions, objects, arrays).
How do you find primitve elements?
==================================
-- for primitives, we use the .indexOf() method and pass the element we are looking for in the parentheses.
-- if you pass in an element that IS in the array, you will get the index location.
-- if you pass in an element that is NOT in the array, you will get a -1 (which is saying it does not exist).
*/
const findPrimNumbers = [1,2,3,4,5];
console.log(findPrimNumbers.indexOf('a')); //-> -1 Since 'a' is not in the array, it returns a -1.
console.log(findPrimNumbers.indexOf(4)); //-> 3 4 is in the array and its index location is 3.
console.log(findPrimNumbers.indexOf("4")); //-> -1 "4" is a string so its not in the array, so it return -1.
/*
How do you find the last index of a given element?
==================================================
-- if you want to find the last instance of a given element.
*/
const findLastInstance = [1,2,3,4,5,3,6]; // note 3 is repeated near the end of the array.
console.log(findLastInstance.lastIndexOf(3)); //-> 5
/*
How do you determine if an element exists in an array?
=======================================================
-- to find out whether or not an element exists in a given array, you look for the element with .indexOf and then
use conditional logic to determine is it is NOT equal to -1 (i.e. the value that is returned if the element is NOT there).
*/
const doesItExist = [1,2,3,4,5,6,7,8,9,10];
console.log(doesItExist.indexOf(5) !== -1); //-> true Is 5 in the array? Yes it is!
console.log(doesItExist.indexOf(15) !== -1); //-> false Is 15 in the array? No, it is NOT.
/*
-- However, there is a better way to do this:
*/
console.log(doesItExist.includes(5)); //-> true
/*
-- You can also pass in a second parameter that will specify where the search begins.
*/
const existSearch = [1,2,3,4,5,6,7,8,9,10];
console.log(existSearch.includes(1, 2)); //-> false This is because although 1 is in the array, we start at index
// of 2 (i.e. 3).
console.log(existSearch.includes(3, 2)); //-> true This is because while looking for #3 in the array, we start at
// index of 2 (i.e. 3).
/*
10. How do you find reference-type elements in an array?
////////////////////////////////////////////////////////
-- finding primitives is different than finding reference types.
-- we use .find(), which returns the FIRST object that matches our search criteria.
How do you find a reference type and return a specific element?
===============================================================
*/
const section = [
{ id: 1, name: 'a'},
{ id: 2, name: 'b'}
];
let found = section.find(function(section) {
return section.name === 'a';
});
console.log(found); //-> { id: 1, name: 'a' }
/*
-- here we call the find method with a function (i.e. predicate or callback) as an argument.
-- its called a 'callback' because the function is called back as part of finding an element in the array.
-- we use the argument as a predicate to determine whether the given element exists in an array or not.
-- the function takes 'section' in the array as a parameter (can be called 'element' but better to be specific).
-- in the body of the function, we want to see if the section name is equal to 'a'.
-- if there is an element that meets that criteria, print.
-- if there are no elements that meet the criteria in the cody body, it returns undefined.
*/
/*
How do you find a reference type and return the index location?
==============================================================
-- .findIndex returns the element's index.
*/
let foundIndex = section.findIndex(function(section) {
return section.name === 'a';
});
console.log(foundIndex); //-> 0 This is because 0 is the index location.
/*
-- you can also use the es6 fat arrow function to make the code cleaner.
-- in this example, we would say "find the section that goes to (i.e. =>) section name that matches 'a'".
*/
let foundIndexArrow = section.find(section => section.name === 'a');
console.log(foundIndexArrow); //-> 0
/*
11. How do you remove an element from an array?
///////////////////////////////////////////////
- to remove an element in an array, you can use:
-- beginning
-- middle
-- end (.pop)
*/
/*
How to remove an element from the BEGINNING of an array?
==================================================
*/
let removeBeginning = [1,2,3,4,5,6,7,8,9];
const beginning = removeBeginning.shift();
console.log(beginning); //=> 1
console.log(removeBeginning); //=> [ 2, 3, 4, 5, 6, 7, 8, 9 ] (note the first element is gone)
/*
How to remove an element from the MIDDLE of an array?
==================================================
-- for removing middle, remember that with .slice you have 2 arguments.
-- first argument = where to start.
-- second argument = where to end.
-- in this case, we just want 1 element, so 1.
-- but if we want to start at 3 (index of 2) and go to 5 (index of 6), we would simply specify .slice(2,6).
*/
let removeMiddle = [1,2,3,4,5,6,7,8,9];
const middle = removeMiddle.splice(2, 0); // in this example we want to remove the element #3 (index of 2).
console.log(middle); //=> 3
console.log(removeMiddle); //=> [ 1, 2, 4, 5, 6, 7, 8, 9 ]
/*
How to remove an element from the END of an array?
==================================================
*/
let removeEnd = [1,2,3,4,5,6,7,8,9];
const ending = removeEnd.pop();
console.log(ending); //=> 9
console.log(removeEnd); //=> [ 1, 2, 3, 4, 5, 6, 7, 8 ] (note the last element is gone)
/*
12. How do you empty an array?
//////////////////////////////
-- when we empty an array, we remove every single element in the array.
-- There are three good methods to do this:
1. reassign the value as an empty array.
-- when you reassign the value as an empty array, if you have another variable that points to the former
version of the object (i.e. full of elements instead of empty), it will still be stored in memory.
-- if there are no reference to the object, then it will be garbage collected to free up memory.
2. use .length to truncate the array (i.e. remove all elements).
3. use .splice and specify the start (i.e. 0) and the entire array (array.length).
4. use .pop
*/
let emptyTheArray = [1,2,3,4,5,6,7,8,9];
emptyTheArray = []; // reassign the value of 'emptyTheArray' to an empty array.
console.log(emptyTheArray); //=> []
//or//
let emptyTheArray2 = [1,2,3,4,5,6,7,8,9];
emptyTheArray2.length = 0; // when you do this, it truncates the array, meaning it will remove all elements.
console.log(emptyTheArray2); //=> []
//or//
let emptyTheArray3 = [1,2,3,4,5,6,7,8,9];
emptyTheArray3.splice(0, emptyTheArray3.length); // .splice from start (index of 0, to the length of the array)
console.log(emptyTheArray3); //=> []
/*
13. How do you combine and slice an array?
//////////////////////////////////////////
How do you combine two arrays together?
======================================
-- to combine two arrays together, you use .concat.
-- to combine an array, make a new variable and call the first part of your array, then .concat, then pass second array
as your argument.
-- whatever array you attach the .concat method to will be first, etc.
*/
const combo1 = [1,2,3];
const combo2 = ['a','b','c'];
const combo3 = ["why though"]
const doubleCombo = combo1.concat(combo2, combo3);
console.log(doubleCombo); //=> [ 1, 2, 3, 'a', 'b', 'c', 'why though' ]
/*
How do you slice an array?
==========================
-- essentially this is simply making a new array by using .slice and two arguments, where it begins and where it ends.
-- remember that the first argument is where the array starts, the second argument is where the array ends.
*/
const sliceUp = ['aaa','bbb','CCC', 'DDD', 'eee', 'fff'];
const newSlice = sliceUp.slice(2,4);
console.log(newSlice); //=> [ 'CCC', 'DDD' ]
/*
How do you copy objects in an array?
===================================
-- when you copy objects, it is not the objects that are copied but the REFERENCES, so the elements in input and output
will point to the same object.
-- in the example below, when you call the concat method, the object is not copied to the new array.
-- only the REFERENCE is copied.
*/
const copObj = [{ name: 'Joe'}];
const copArr = [1,2,3,4,5,6,7,8];
const ObjArrCombo = copObj.concat(copArr);
console.log(ObjArrCombo); //=> [ { name: 'Joe' }, 1, 2, 3, 4, 5, 6, 7, 8 ]
/*
14. How do you use the spread operator?
///////////////////////////////////////
-- with the introduction of es6, there is a much easier way to combine arrays than using the .concat method using spread operator
-- the spread operator (i.e. ...)
-- when you spread an array all of its elements are returned individually.
-- so we declare a new array THEN inside the new array we are adding the individual elements of the first and second arrays.
*/
const spread1 = [1,2,3,4];
const spread2 = [5,6,7,8];
const combinedSpread = [...spread1, ...spread2];
console.log(combinedSpread); //=> [ 1, 2, 3, 4, 5, 6, 7, 8 ]
/*
-- you also have a great deal more flexibility with this spread method.
-- for example, we could add another element in the middle of the previous arrays.
*/
const combinedSpread2 = [...spread1, 'WOW', ...spread2];
console.log(combinedSpread2); //=> [ 1, 2, 3, 4, 'WOW', 5, 6, 7, 8 ]
/*
15. How do you iterate over an array?
/////////////////////////////////////
-- to iterate over an array (i.e. loop over the elements in an array), you can use:
-- for...of loop
-- .forEach with function
-- .forEach with es6 fat-arrow function.
*/
const iterate1 = [1,2,3,4,5];
for (let number of iterate1) {
console.log(number); //=> 1 2 3 4 5
}
//or//
const iterate2 = [1,2,3,4,5];
iterate2.forEach(function(number) {
console.log(number); //=> 1 2 3 4 5
});
//or using es^ fat-arrow function//
iterate2.forEach((number) => {
console.log(number); //=> 1 2 3 4 5
});
/*
-- additionally, suppose we want to return not only the number but the index as well
*/
iterate2.forEach(function(number, index) { //=> the index of 1 is 0
console.log(`the index of ${number} is ${index}`); // the index of 2 is 1
}); // the index of 3 is 2
// the index of 4 is 3
// the index of 5 is 4
/*
16. How do you join an array?
////////////////////////////
-- to join an array (i.e. put all the element in the array together,) we use the .join() method.
-- the .join method can have two arguments.
-- the first OPTIONAL argument can specify how you want to seperated them (i.e. with a comma).
-- the second argument is an empty string.
*/
const joinArray = [1,2,3,4,5];
const joined = joinArray.join(',', " "); // note the two arguments here, the first a comma, the second an empty string
console.log(joined); //=> 1,2,3,4,5
const joined2 = joinArray.join('');
console.log(joined2); //=> 12345
/*
How do you split a string?
==========================
-- you can also use .split to literally split apart a string in an array.
*/
const stringArray = 'hello';
const splitString = stringArray.split('');
console.log(splitString); //=> [ 'h', 'e', 'l', 'l', 'o' ]
/*
17. How do you sort an array?
/////////////////////////////
-- when you sort an array, you order the elements in the array from least to greatest (or greatest to least).
*/
const arrayToArrange = [1,'beta', 3, 'alpha', 2, 'charlie'];
const normalSort = arrayToArrange.sort();
console.log(normalSort); //=> [ 1, 2, 3, 'alpha', 'beta', 'charlie' ]
const sortBack = arrayToArrange.reverse();
console.log(sortBack); //=> [ 'charlie', 'beta', 'alpha', 3, 2, 1 ]
/*
-- however, if you have objects in the array, you need to do things a little differently:
*/
const arrayOfObjects = [
{ id: 1, name: 'pears'},
{ id: 2, name: 'apples'}
];
/*
-- to sort the array of objects by the name, we need to pass a function for comparison.
-- the function will take two parameters.
-- the first parameter (i.e. a) is FIRST.
-- the second parameter (i.e. b) is SECOND.
-- in the example below, note that we are using if statements but not if, else if statements
-- this is because if we use if, else if the sorting will stop at the first if statement.
*///
// \
const sortArrayObjects = arrayOfObjects.sort(function(a,b) {
const nameA = a.name.toUpperCase();
const nameB = b.name.toUpperCase();
if (nameA < nameB) return -1;
if (nameA > nameB) return 1;
return 0;
});
console.log(sortArrayObjects); //=> [ { id: 2, name: 'apples' }, { id: 1, name: 'pears' } ]
/*
18. How do you test elements of an array?
/////////////////////////////////////////
-- in modern JavaScript we have two new methods call EVERY and SUM.
-- .every()
-- in the method .every(), we pass a CALLBACK function.
-- there are actually three parameters: value, index, array.
-- however, you could just use a single parameter like value or index if you want.
-- .some()
-- this checks to see if we have at least one element in the array that matches the criteria.
How do you use .every()
=======================
-- when we use .every(), we check to see if EVERY element in the array matches the criteria.
-- so in the example below, we want to check to see if all the numbers in the array are POSITIVE.
*/
const testElements = [1,2,3];
const AllPositives = testElements.every(function(value) { // here we check to see if the value is a postive number
return value >= 0;
});
console.log(AllPositives); //=> true And if there was a negative number in there, it would return false.
/*
How do you use .some()
======================
-- when we use .some(), we check to see if there is any element in the array that matches our criteria.
*/
const checkSum = [1,2,3,4,5];
const atLeastOnePositive = checkSum.some(function(value) {
return value >= 0;
});
console.log(atLeastOnePositive); //=> true
/*
19. How do you filter an array based on search criteria?
////////////////////////////////////////////////////////
-- this method is used to take one array of items and make a new one that contains only items you are filtering that are true.
-- in practical use, this would be like having a 'find restautrants by hours open' in an app.
-- the array would be full of times, the filter method would search for those restaurants that were open to your specs.
*/
const filterArray = [1,-1, 2, 3, 4, 5, -4, -7];
const greater = filterArray.filter(function(value) {
return value >= 0;
});
console.log(greater); //=> [ 1, 2, 3, 4, 5 ]
//or using Fat arrow functions//
const greaterFatArrow = filterArray.filter(value => value >= 0);
console.log(greaterFatArrow) //=> [ 1, 2, 3, 4, 5 ]
/*
20. How do you map an array?
////////////////////////////
-- the map() method is used to generate a new array of items by applying the same function to each item in the array
-- in other words, we can map each item in the array to something else.
-- in the example below, we want to construct an html markup:
-- what this does is display each number in the array with a bullet point.
-- also note in this case we are only working with the value.
How do you map an array?
========================
*/
const mapArray = [1,2,3];
const mapIt = mapArray.map(function(value) {
return '<li>' + value + '</li>' // maps the elements in the array to this schema...
}); // we are basically mapping the elements in an array to something else, in this case strings.
const html = mapIt.join(''); // converts the array to a string.
// note: by default if the parentheses are empty, you will get
// commas. To avoid this, put in an empty string.
const addUl = '<ul>' + html + '</ul>'; // adds ul elements outside the html results.
console.log(mapIt); //=> [ '<li>1</li>', '<li>2</li>', '<li>3</li>' ]
console.log(html); //=> <li>1</li><li>2</li><li>3</li>
console.log(addUl); //=> <ul<li>1</li><li>2</li><li>3</li></ul>
/*
How do you map an object?
========================
*/
const mapArray2 = [1,2,3];
const mapIt2 = mapArray2.map(function(value) {
const object = { // this could also be written:
number: value //================================
}; // return {name: value}; note: you could also exclude the return keyword.
return object; //
});
console.log(mapIt2); //=> [ { number: 1 }, { number: 2 }, { number: 3 } ]
/*
How do you map an array with a function as a parameter?
======================================================
*/
function double(num) { // First we have a function which will double each element in the array.
return 2 * num;
}
const arrayToDouble = [1,2,3,4,5]; // Second we have the array whose elements we want to double.
const doubledNumbers = arrayToDouble.map(double); // we create a new variable and apply map to the array and call double
console.log(doubledNumbers); //=> [ 2, 4, 6, 8, 10 ]
/*
21. How do you use reduce for an array?
///////////////////////////////////////
-- you use .reduce method to calculate the sum of elements in an array.
-- this method is very good for aggregating array data.
-- the method takes an array and REDUCES it to one thing.
How do you add an array WITHOUT .reduce()?
==========================================
*/
const addThisArray = [1,2,3,4,5,6,7,8,9,10];
let sum = 0; // first create a variable to hold the total value of our tally.
for (let n of addThisArray) { // then loop though the elements in the array. for every number (n) in the array (addThisArray)..
sum = sum + n; // sum will be the value of sum PLUS the number we are iterating. you can also write as sum += n.
}
console.log(sum); //=> 55
/*
How do you add an array WITH .reduce()?
=======================================
-- the reduce method takes a callback function with two parameters.
*/
const addThisArray2 = [1,2,3,4,5,6,7,8,9,10];
const sumAdd = addThisArray2.reduce((accumulator, currentValue) => {
return accumulator + currentValue;
}, 0);
console.log(sumAdd); //=> 55