Skip to content

Instantly share code, notes, and snippets.

@valerymelou
Created May 20, 2018 09:56
Show Gist options
  • Save valerymelou/e6496ad084c1dbefdbbb4d8da745a2cb to your computer and use it in GitHub Desktop.
Save valerymelou/e6496ad084c1dbefdbbb4d8da745a2cb to your computer and use it in GitHub Desktop.
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