Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Array Iteration Methods Array Manipulation Remove Array Items with filter()

what does argument do in filter function?

While I get filter function, I am unable to understand why there is a number parameter set in the function, like

const events = numbers.filter((number) => number % 2 === 0);

while in normal function we do as following

function numbers(number){
   console.log(number % 2 === 0)
}
numbrers(2);

we pass an argument in the place of the argument, but in the filter I am unable to understand where we passed argument instead of number

1 Answer

Jeff Wilton
Jeff Wilton
16,646 Points

The argument is just a shorthand syntax that represents each individual item that is being selected from the list of items by the filter.