Answers for "How does find works in javscript?"

0

How does find works in javscript?

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' } */
Posted by: Guest on September-11-2021

Code answers related to "How does find works in javscript?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language