Skip to content

Instantly share code, notes, and snippets.

@Yigaue
Last active May 14, 2020 23:07
Show Gist options
  • Save Yigaue/d48e819a7e93ae8b8cacc7607c9e8312 to your computer and use it in GitHub Desktop.
Save Yigaue/d48e819a7e93ae8b8cacc7607c9e8312 to your computer and use it in GitHub Desktop.
let data = [
{id: 1, title: "Don't Waste your life ", price: 33, Author: "John Piper"},
{id: 2, title: "Living for a greater purpose", price: 12, Author: "JH Baritam"},
{id: 3, title: "The call for Mercy", price: 405, Author: "Lekia Yiga"},
{id: 4, title: "Heart Blindness", price: 550, Author: "Unknown author"}
];
let discountedBooks = data.filter(item => item.price > 100);
console.log(discountedBooks);
//result
/*
(2) [{…}, {…}]0:
{id: 3, title: "The call for Mercy", price: 405, Author: "Lekia Yiga"}1:
{id: 4, title: "Heart Blindness", price: 550, Author: "Unknown author"}
length: 2__proto__: Array(0)
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment