Sobes.tech
Junior — Senior

What output will the console get in example №22

livecode

Task condition

Specify what result will be output to the console when executing the following code:

var user = {
  name: "Ivan",
  hi() {
    console.log(this.name)
  }
}

user.hi() // ?