Skip to content

Instantly share code, notes, and snippets.

@akankshach29
Created October 6, 2024 15:06
Show Gist options
  • Save akankshach29/00bdb8cddb4b1562a8ab75e5fac495e6 to your computer and use it in GitHub Desktop.
Save akankshach29/00bdb8cddb4b1562a8ab75e5fac495e6 to your computer and use it in GitHub Desktop.
A5.11_HW_2
const productsData = [
{
id: 1,
productName: "Laptop",
price2021: 19999,
price2022: 18999,
price2023: 15090,
brand: "Dell",
productRating: 5
},
{
id: 2,
productName: "Smartphone",
price2021: 18999,
price2022: 17999,
price2023: 16999,
brand: "Samsung",
productRating: 4
},
{
id: 3,
productName: "Smartwatch",
price2021: 36999,
price2022: 32999,
price2023: 29999,
brand: "Apple",
productRating: 4
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment