Module Lessons
Javascript Arrays and Objects
Arrays Store Ordered Data
RE: Chapter 4
Learn how arrays store ordered data and how indexing helps JavaScript retrieve values from a list.
38

Mutating Arrays
RE: Chapter 4
Practice the main methods that add, remove, and change items inside arrays.
39

Looping Through Arrays
RE: Chapter 4
Use loops and forEach() to process every item in an array efficiently.
40

Transforming Filtering Summarizing and Sorting
RE: Chapter 4
Transform, filter, summarize, and sort array data with some of JavaScript’s most useful methods.
41

Module 4 - Practice Quiz over Arrays
A practice quiz over arrays, array methods, and iterating through arrays with specific array methods.
41.1

Objects Group Related Data
RE: Chapter 4
Learn how objects group related data using named properties.
42

Updating Objects and Writing Methods
RE: Chapter 4
Update objects, add properties, and create methods that work with an object’s own data.
43

Arrays of Objects and Real-World Data
RE: Chapter 4
Combine arrays and objects to work with realistic structured data.
44

