Manipulate Arrays and Objects with ES6 Methods in JavaScript
Course Title: Modern JavaScript Programming: From Fundamentals to Full-Stack Development
Section Title: JavaScript Objects, Arrays, and ES6 Features
Topic: Manipulate arrays and objects using ES6+ methods like map
and reduce
.
Introduction
In this lab, we'll dive deeper into manipulating arrays and objects using ES6+ methods like map
and reduce
. These methods are essential in modern JavaScript programming, allowing you to work with data efficiently and effectively. We'll explore real-world examples and provide practical exercises to help you grasp these concepts.
Array Methods: map()
, filter()
, and reduce()
map()
The map()
method creates a new array by applying a given function to each element in the original array. It's useful when you need to transform data from one format to another.
const numbers = [1, 2, 3, 4, 5];
const doubledNumbers = numbers.map((number) => number * 2);
console.log(doubledNumbers); // [2, 4, 6, 8, 10]
filter()
The filter()
method creates a new array with elements that pass a test implemented by a provided function.
const numbers = [1, 2, 3, 4, 5];
const evenNumbers = numbers.filter((number) => number % 2 === 0);
console.log(evenNumbers); // [2, 4]
reduce()
The reduce()
method applies a function against an accumulator and each element in the array (from left to right) to reduce it to a single value.
const numbers = [1, 2, 3, 4, 5];
const sum = numbers.reduce((accumulator, current) => accumulator + current, 0);
console.log(sum); // 15
Object Methods: Object.keys()
, Object.values()
, and Object.entries()
Object.keys()
The Object.keys()
method returns an array of a given object's own enumerable property names.
const person = { name: 'John', age: 30, city: 'New York' };
const keys = Object.keys(person);
console.log(keys); // ['name', 'age', 'city']
Object.values()
The Object.values()
method returns an array of a given object's own enumerable property values.
const person = { name: 'John', age: 30, city: 'New York' };
const values = Object.values(person);
console.log(values); // ['John', 30, 'New York']
Object.entries()
The Object.entries()
method returns an array of a given object's own enumerable string-keyed property [key, value]
pairs.
const person = { name: 'John', age: 30, city: 'New York' };
const entries = Object.entries(person);
console.log(entries); // [['name', 'John'], ['age', 30], ['city', 'New York']]
Practical Exercises
Use the
map()
method to create a new array of full names from an array of objects containing first and last names.const people = [ { firstName: 'John', lastName: 'Doe' }, { firstName: 'Jane', lastName: 'Smith' }, { firstName: 'Bob', lastName: 'Brown' }, ]; const fullNames = people.map((person) => `${person.firstName} ${person.lastName}`); console.log(fullNames); // ['John Doe', 'Jane Smith', 'Bob Brown']
Use the
filter()
method to create a new array of people who are 30 or older from an array of objects containing names and ages.const people = [ { name: 'John', age: 25 }, { name: 'Jane', age: 35 }, { name: 'Bob', age: 30 }, ]; const adults = people.filter((person) => person.age >= 30); console.log(adults); // [{ name: 'Jane', age: 35 }, { name: 'Bob', age: 30 }]
Use the
reduce()
method to calculate the total age of people from an array of objects containing names and ages.const people = [ { name: 'John', age: 25 }, { name: 'Jane', age: 35 }, { name: 'Bob', age: 30 }, ]; const totalAge = people.reduce((accumulator, person) => accumulator + person.age, 0); console.log(totalAge); // 90
Conclusion
In this lab, you've learned how to manipulate arrays and objects using ES6+ methods like map()
, filter()
, reduce()
, Object.keys()
, Object.values()
, and Object.entries()
. These methods are essential in modern JavaScript programming, and with practice, you'll become proficient in using them to work with data efficiently.
Next Steps
In the next topic, we'll introduce asynchronous programming concepts, including callbacks and promises. This will lay the foundation for working with asynchronous code in modern JavaScript applications.
Learn more about Array.prototype.map()
Learn more about Array.prototype.filter()
Learn more about Array.prototype.reduce()
Learn more about Object.keys()
Learn more about Object.values()
Learn more about Object.entries()
Do you have any questions or need further clarification on these concepts? Leave a comment below.
Images

Comments