Created
June 22, 2025 04:03
-
-
Save nvondelli/dfe4580ccf9ac409aea635213dec020b to your computer and use it in GitHub Desktop.
Mi primer Gist :)
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 NVB = { | |
Nombre: "Nelson", | |
Apellido: "Von der B", | |
Edad: 41, | |
País: "Colombia", | |
Profesión: "Químico", | |
Maneja: true, | |
Mascotas: [ | |
{ | |
animal: "Gato", | |
nombre: "Mr.T", | |
} | |
], | |
Hobbies: ["Futbol", "PS5", "Pickenball"], | |
tocaInstrumentos: true, | |
nivelIngles: "Intermedio", | |
ciudad: "Medellín", | |
redesSociales: { | |
Instagram: "nvondelli", | |
Facebook: "Nelson Vonder" | |
}, | |
peliculasFavoritas: [ | |
"Salvando al soldado Ryan", | |
"La vida es Bella", | |
"Hasta el ultimo hombre" | |
], | |
comidasFavoritas: ["Pasta", "Pizza","Lasagna"], | |
sabeCocinar: true, | |
diaSemanaFavorito: "Domingo", | |
objetivosPorCumplir: [ | |
{ | |
Tipo: "Personal", | |
objetivo: "Compra de apartamento" | |
}, | |
{ | |
Tipo: "Personal", | |
objetivo: "Viajar a Europa" | |
}, | |
{ | |
Tipo: "Profesional", | |
objetivo: "Terminar carrera programación" | |
} | |
] | |
} | |
NVB.Mascotas.push({ | |
animal: "Perro", | |
nombre: "Thor" | |
}); | |
console.log(NVB) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment