Showing posts with label Typescript. Show all posts
Showing posts with label Typescript. Show all posts

Lambda in Angular (typescript)

Posted on by Kim

return books.bar.filter(function (x) {
  return x.id === null;
}).length;

change to

return books.bar.filters(b => b.id === null).length;