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
//First we define our array of objects | |
const miPlaylist = [ | |
/* template | |
{ | |
titulo: "", | |
url: "", | |
resumen: "", | |
tags: [], | |
visto: false, |
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
// Testing with objects and functions--- | |
const games = { | |
name: "Cyberpunk 2077", | |
price: 59.99, | |
isOnSale: false, // Not necessary, could use if games.saleDiscount > 0 | |
// but could be useful for setting discounts ahead of time | |
saleDiscount: 25 | |
}; |