Skip to content

Instantly share code, notes, and snippets.

@djD-REK
Created September 17, 2019 04:08
Show Gist options
  • Select an option

  • Save djD-REK/5cbc9b3617e601b68da5beceecccaff7 to your computer and use it in GitHub Desktop.

Select an option

Save djD-REK/5cbc9b3617e601b68da5beceecccaff7 to your computer and use it in GitHub Desktop.
const hello = { world: function() {
console.log('Hello World!')
}}
hello.world() // Hello World!
const helloAgain = { world() {
console.log('Hello World!')
}}
helloAgain.world() // Hello World!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment