Skip to content

Instantly share code, notes, and snippets.

@kjk
Created November 8, 2019 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kjk/165eb7cf43b628fbb6b49a792638df01 to your computer and use it in GitHub Desktop.
Save kjk/165eb7cf43b628fbb6b49a792638df01 to your computer and use it in GitHub Desktop.
// :glot
const person = {
firstName: "John",
lastName: "Doe",
log: () => console.log("hello from log()")
};
console.log("firstName:", person.firstName);
console.log("lastName:", person["lastName"]);
person.log();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment