Created
May 17, 2020 18:32
-
-
Save Yigaue/b3705d617f9a83e2db2a6cbd62ddf851 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.find(item => item.price > 100); | |
console.log(discountedBooks); | |
// result | |
Object { | |
Author: "Lekia Yiga", | |
id: 3, | |
price: 405, | |
title: "The call for Mercy" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment