Sobes.tech
Junior — Senior

What will the console display in this example No. 4

livecode

Task condition

Determine what output will appear in the console when executing the following JavaScript code:

var object = {
  data: 'Some Data',
  foo: function foo() {
    console.log(this.data);

    function bar() {
      console.log(this.data);
    }

    bar();
  }
};

object.foo();