📅  最后修改于: 2022-03-11 15:02:19.396000             🧑  作者: Mango
const products = [
{ name: 'Laptop', price: 32000, brand: 'Lenovo', color: 'Silver' },
{ name: 'Phone', price: 700, brand: 'Iphone', color: 'Golden' },
{ name: 'Watch', price: 3000, brand: 'Casio', color: 'Yellow' },
{ name: 'Aunglass', price: 300, brand: 'Ribon', color: 'Blue' },
{ name: 'Camera', price: 9000, brand: 'Lenovo', color: 'Gray' },
];
//Get product that price is greater than 3000 by using a find
const getProduct = products.find(product => product.price > 3000);
console.log(getProduct) //first conditon will be print
//Expected output:
/* { name: 'Laptop', price: 32000, brand: 'Lenovo', color: 'Silver' } */