Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save valerymelou/d40e75af1436910c50c9e97e21ac8009 to your computer and use it in GitHub Desktop.
Save valerymelou/d40e75af1436910c50c9e97e21ac8009 to your computer and use it in GitHub Desktop.
const firstName = "John";
const lastName = "Doe";
const birth = 1980;
const death = 1990;
const person = {
firstName,
lastName,
age() {
return death - birth;
}
}
console.log(person); // {firstName: "John", lastName: "Doe", age: f}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment