Skip to content

Instantly share code, notes, and snippets.

@Yigaue
Last active May 17, 2020 22:02
Show Gist options
  • Save Yigaue/a4602d94a2af7bb65c033adbf816231f to your computer and use it in GitHub Desktop.
Save Yigaue/a4602d94a2af7bb65c033adbf816231f to your computer and use it in GitHub Desktop.
let data = [
{id: 1, title: 'Nite watch', price: 33, discount:0},
{id: 2, title: 'what I want', price: 12, discount:0.4},
{id: 3, title: 'Mercy at last', price: 405, discount:0.25},
{id: 4, title: 'Nothting between', price: 550, discount:0}
];
let discountedBooks = data.some(item => item.discount > 0 );
console.log(discountedBooks);
// result
true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment