Skip to content

Instantly share code, notes, and snippets.

@nvondelli
Created June 22, 2025 04:03
Show Gist options
  • Save nvondelli/dfe4580ccf9ac409aea635213dec020b to your computer and use it in GitHub Desktop.
Save nvondelli/dfe4580ccf9ac409aea635213dec020b to your computer and use it in GitHub Desktop.
Mi primer Gist :)
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