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
// index.js | |
// Recibe argumentos, los procesa y delega las acciones a pelis.js. | |
const pelis = require('./pelis.js'); | |
function filtros(typeSearch, filter){ | |
const map = { | |
" " : pelis.showAll,// de no haber argumentos directamente se despliegan todas las pelis | |
"--sort" :{ | |
"title" : pelis.showTitle, //ordenara alfabeticamente apartir de la pelicula que coincida | |
"rating" : pelis.showRating, //ordenara de mayor a menor rating |
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 jugadorUno = { | |
nombre: "Marce", | |
habilidades: { | |
ataque: 70, | |
velocidad: 30, | |
vida: 60, | |
magia: 120, | |
}, | |
articulos: ["espada", "escudo", "varita"], | |
}; |