Created
October 6, 2024 15:06
-
-
Save akankshach29/00bdb8cddb4b1562a8ab75e5fac495e6 to your computer and use it in GitHub Desktop.
A5.11_HW_2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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