calling method using THIS and function

PHOTO EMBED

Sun Jan 03 2021 18:07:48 GMT+0000 (Coordinated Universal Time)

Saved by @k2adir #javascript

const example = {
  name: 'mark',
  color: 'red',
  giveDetails(){
    console.log(`${this.example} is a ${this.color} something.`)
  }
}
content_copyCOPY