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 miPlaylist = [ | |
{ | |
titulo: "Una lista ordenada de datos", | |
url: "https://www.youtube.com/watch?v=KwQZfqX1LWs", | |
resumen: "En este video se introduce el concepto de arquitectura de software en JavaScript.", | |
tags: ["JavaScript", "Arquitectura", "Programacion", "Apx"], | |
visto: true, | |
dificultad: 5 | |
}, | |
{ |
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 meses = ["enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre"]; | |
console.log(meses[9]); | |
const carrito = [ | |
{ | |
articulo: "Libro", | |
precio: 200, |