Skip to content

Instantly share code, notes, and snippets.

@valerymelou
Created May 20, 2018 09:39
Show Gist options
  • Save valerymelou/3cfbe8b00125af5b6d7d70597e37889a to your computer and use it in GitHub Desktop.
Save valerymelou/3cfbe8b00125af5b6d7d70597e37889a to your computer and use it in GitHub Desktop.
var person = {
firstName: "John",
lastName: "Doe",
age: 15
};
var firstName = person.firstName;
var lastName = person.lastName;
var age = person.age;
console.log(firstName, lastName, age); // John Doe 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment