The "this object" denotes the "the current object". In the previous example, the method sayName() used hero.name to access the name property of the hero object. When you're inside a method, there is another way to access the object by using the reserved value this.
var hero = { name: 'Rafaelo', sayName: function() { return this.name; } }
hero.sayName(); "Rafaelo"