Week 1

This session is about mastering the most commonly used array functions provided by Javascript. Working with arrays is an essential part of being a javascript developer. A lot of the time js developers have an array of some objects. That could be users, products, posts, jobs etc. Developers so often need to filter the arrays, change the structure of the array, sort them or loop through them.

Understanding how to use array functions and the arrow notation can greatly improve the readability of your code.

Contents

Session Learning Goals

By the end of this session, you will be able to:

// Example of using filter() with an arrow function
const expensiveItems = myItemArray.filter((x) => x.cost > 200);

Last updated