Created
December 3, 2016 15:32
-
-
Save labra/66315d67a1c1acb054c8a69fa38c0034 to your computer and use it in GitHub Desktop.
Marcela
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
let marcela = { | |
"nombre": "Marcela", | |
"edad": 25 } ; | |
console.log(marcela); | |
console.log("Edad de marcela " + marcela.edad); | |
console.log("El año que viene tendrá " + (marcela["edad"] + 1)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment