Created
May 20, 2018 09:56
-
-
Save valerymelou/e6496ad084c1dbefdbbb4d8da745a2cb to your computer and use it in GitHub Desktop.
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
const firstName = "John"; | |
const lastName = "Doe"; | |
const age = 10; | |
const person = { | |
firstName, | |
lastName, | |
age, | |
} | |
console.log(person); // {firstName: "John", lastName: "Doe", age: 10} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment