Skip to content

Instantly share code, notes, and snippets.

@Damimd10
Created March 24, 2019 03:36
Show Gist options
  • Save Damimd10/8d8d4d913767eb03600d78c676fcd582 to your computer and use it in GitHub Desktop.
Save Damimd10/8d8d4d913767eb03600d78c676fcd582 to your computer and use it in GitHub Desktop.
const batman = {
isFromDC: true,
info: function() {
console.log(`Batman is ${this.isFromDC ? '' : 'not '}from DC`)
},
}
batman.info() // Batman is from DC.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment