Examples of JavaScript Array Methods Examples

Explore diverse examples of JavaScript array methods to enhance your coding skills and understanding.
By Taylor

Understanding JavaScript Array Methods

JavaScript arrays are powerful tools for storing and manipulating collections of data. They come with a variety of built-in methods that allow you to perform operations like adding, removing, or transforming elements. In this article, we’ll explore three practical examples of JavaScript array methods that will help you get started and understand how to use them effectively.

Example 1: Filtering an Array with filter()

Use Case

Imagine you have a list of ages, and you only want to find out which individuals are eligible to vote (18 years or older). The filter() method is perfect for this task.

const ages = [15, 22, 18, 30, 12, 25];
const eligibleToVote = ages.filter(age => age >= 18);
console.log(eligibleToVote); // Output: [22, 18, 30, 25]

In this example, we have an array of ages, and we use the filter() method to create a new array that only includes those who are 18 or older. This method does not modify the original array but instead returns a new one with the filtered results.

Notes

  • The callback function inside filter() can be customized to apply different conditions.
  • Remember that filter() creates a new array, so the original data remains unchanged.

Example 2: Transforming an Array with map()

Use Case

You have an array of prices in dollars, and you want to convert these prices to cents. The map() method allows you to transform each element in an array efficiently.

const pricesInDollars = [10.99, 5.49, 12.50, 2.99];
const pricesInCents = pricesInDollars.map(price => Math.round(price * 100));
console.log(pricesInCents); // Output: [1099, 549, 1250, 299]

Here, we start with an array of prices in dollars and use map() to create a new array where each price is multiplied by 100 and rounded to the nearest whole number. This method is particularly useful when you need to perform the same operation on every element in an array.

Notes

  • The original array remains unchanged, and a new array is returned with transformed values.
  • You can chain other array methods after map() for further processing.

Example 3: Reducing an Array with reduce()

Use Case

Suppose you need to calculate the total score from an array of individual scores. The reduce() method can accumulate values and return a single result, making it ideal for this scenario.

const scores = [10, 20, 30, 40];
const totalScore = scores.reduce((accumulator, currentScore) => accumulator + currentScore, 0);
console.log(totalScore); // Output: 100

In this example, we use reduce() to sum up all the scores in the array. The accumulator parameter holds the total as we iterate through each score, and currentScore represents the current element being processed.

Notes

  • The second parameter of reduce() (in this case, 0) initializes the accumulator.
  • reduce() can be used for various purposes, such as finding the maximum value or counting occurrences of elements.

By exploring these examples of JavaScript array methods examples, you can see how these powerful tools can simplify your code and enhance your programming capabilities. Happy coding!