Skip to content

Instantly share code, notes, and snippets.

@oliversd
Created January 6, 2019 17:52
Show Gist options
  • Save oliversd/4cc9f853024292836a331aeec8bf3c77 to your computer and use it in GitHub Desktop.
Save oliversd/4cc9f853024292836a331aeec8bf3c77 to your computer and use it in GitHub Desktop.
let firstName="Albert"
let lastName="Einstein"
let person = {firstName, lastName}
console.log(person.firstName); // "Albert"
console.log(person.lastName); // "Einstein"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment