Created
June 7, 2015 21:52
-
-
Save francescoagati/14261f1e610eadff0766 to your computer and use it in GitHub Desktop.
des4
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
var x = 1; | |
var y = 2; | |
var z = 3; | |
var person = { name : "mario", surname : "rossi", age : 25}; | |
console.log(person); | |
var name = person.name; | |
var surname = person.surname; | |
var a = x; | |
var b = y; | |
var c = z; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment