28

I'm trying to figure out why an arrow function in an object literal is called with window as this. Can someone give me some insight?

var arrowObject = {
  name: 'arrowObject',
  printName: () => {
    console.log(this);
  }
};

// Prints: Window {external: Object, chrome: Object ...}
arrowObject.printName();

And an object that works as expected:

var functionObject = {
  name: 'functionObject',
  printName: function() {
    console.log(this);
  }
};

// Prints: Object {name: "functionObject"}
functionObject.printName();

According to Babel REPL, they're transpiled to

var arrowObject = {
  name: 'arrowObject',
  printName: function printName() {
    console.log(undefined);
  }
};

And

var functionObject = {
  name: 'functionObject',
  printName: function printName() {
    console.log(this);
  }
};

Why isn't arrowObject.printName(); called with arrowObject as this?

Console logs are from Fiddle (where use strict; isn't used).

T.J. Crowder
  • 879,024
  • 165
  • 1,615
  • 1,639
Dennis S
  • 739
  • 1
  • 17
  • 30
  • 1
    when the outer context(where the object is created) has `this` as the window object... arrow functions will uses the creators `this` value as its `this` context – Arun P Johny Apr 19 '16 at 11:44

1 Answers1

45

Note that the Babel translation is assuming strict mode, but your result with window indicates you're running your code in loose mode. If you tell Babel to assume loose mode, its transpilation is different:

var _this = this;                    // **

var arrowObject = {
  name: 'arrowObject',
  printName: function printName() {
    console.log(_this);              // **
  }
};

Note the _this global and console.log(_this);, instead of the console.log(undefined); from your strict-mode transpilation.

I'm trying to figure out why an arrow function in an object literal is called with window as this.

Because arrow functions inherit this from the context in which they're created. Apparently, where you're doing this:

var arrowObject = {
  name: 'arrowObject',
  printName: () => {
    console.log(this);
  }
};

...this is window. (Which suggests you're not using strict mode; I'd recommend using it where there's no clear reason not to.) If it were something else, such as the undefined of strict mode global code, this within the arrow function would be that other value instead.

It may be a bit clearer what the context is where the arrow function is created if we break your initializer into its logical equivalent:

var arrowObject = {};
arrowObject.name = 'arrowObject';
arrowObject.printName = () => {
  console.log(this);
};
T.J. Crowder
  • 879,024
  • 165
  • 1,615
  • 1,639
  • 1
    I was indeed using Fiddle (without "use strict;"). Great answer, I understand what's going on now. – Dennis S Apr 19 '16 at 12:04