2
itamar
7y

_.filter(posts, (p) => {
return p.type != "older ppl not knowing computers";
});

Comments
  • 1
    JavaScript arrays have a filter method now, it's no longer recommended to use lodash functions.
    Check out MPJs youtube channel on functional JS
Add Comment