Skip to content

Instantly share code, notes, and snippets.

@DavidPeralvarez
Created March 24, 2020 11:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidPeralvarez/28e29957668d6335659d86876b4544af to your computer and use it in GitHub Desktop.
Save DavidPeralvarez/28e29957668d6335659d86876b4544af to your computer and use it in GitHub Desktop.
JavaScript - Notación por puntos
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Curso de Javascript</title>
</head>
<body>
<script src="scripts.js"></script>
</body>
</html>
/* Objetos */
var perro = {
nombre: 'Mel',
edad: 4,
raza: 'Border Collie',
adoptado: true,
dueno: {
nombre: 'David',
apellido: 'Perálvarez',
direccion: {
calle: 'Falsa',
numero: 123,
ciudad: 'Springfield'
},
telefono: '3424234234'
},
sociable: true
};
console.log( perro );
console.log( perro.nombre );
console.log( perro.raza );
console.log( perro.dueno.apellido );
console.log( perro.dueno.direccion.ciudad );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment