Ask Your Question
0

What is the method to display an array element through 'filter'?

asked 2021-10-12 11:00:00 +0000

plato gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2021-05-19 20:00:00 +0000

lakamha gravatar image

In order to display an array element through 'filter' in JavaScript, you need to use the filter() method, which creates a new array with all elements that pass the test implemented by the provided function.

Here's an example:

const arr = [1, 2, 3, 4, 5];

const filteredArr = arr.filter(element => element === 3);

console.log(filteredArr); // Output: [3]

In this example, we have an array arr containing the numbers 1 through 5. We use the filter() method to create a new array called filteredArr consisting of only the element that matches the condition element === 3.

The output of console.log(filteredArr) will be [3], as expected.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-10-12 11:00:00 +0000

Seen: 15 times

Last updated: May 19 '21