Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 885 Bytes

File metadata and controls

26 lines (16 loc) · 885 Bytes

REVIEW JavaScript week 5

This review covers:
• Functions + JSON/Arrays
• Array Manipulations
• JSON
• Map and filter
• Arrow functions

Array Manipulations

As we know by now, arrays are collections of values.

As we will see, there are often many ways to achieve the same thing when working arrays. Over time, you will add different techniques to your mental toolbox to achieve the result you want quickly.

Read more...

Map and filter

The array methods map() and filter() are best understood by looking at how they could be implemented if we were to write them ourselves. In the next few sections we will present simplified versions of the native implementations. We have prefixed the method names with my to distinguish them from the built-in versions.

Read more...