Tagged Questions
3
votes
4answers
2k views
Removing elements with Array.map in JavaScript
I would like to filter an array of items by using the map() function. Here is a code snippet:
var filteredItems = items.map(function(item)
{
if( ...some condition... )
{
return item;
...