Skip to content

Instantly share code, notes, and snippets.

@akankshach29
Created October 6, 2024 14:54
Show Gist options
  • Save akankshach29/23bf6cd3793dae9274c7bda5e94fbe9e to your computer and use it in GitHub Desktop.
Save akankshach29/23bf6cd3793dae9274c7bda5e94fbe9e to your computer and use it in GitHub Desktop.
A5.12_HW_2
const productsData = [
{ id: 101, name: "Laptop", price: 999.99, brand: "Dell", category: "Electronics", rating: 4.5 },
{ id: 102, name: "Smartphone", price: 599.99, brand: "Samsung", category: "Electronics", rating: 4.0 },
{ id: 103, name: "Running Shoes", price: 79.99, brand: "Nike", category: "Footwear", rating: 4.8 },
{ id: 104, name: "T-shirt", price: 19.99, brand: "Adidas", category: "Apparel", rating: 4.2 },
{ id: 105, name: "Coffee Maker", price: 49.99, brand: "Hamilton", category: "Kitchen Appliances", rating: 4.6 }
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment