Skip to content

Instantly share code, notes, and snippets.

@swashata
Created March 3, 2019 07:18
Show Gist options
  • Select an option

  • Save swashata/453e88b47ee3a7fb9fe21fce991a924c to your computer and use it in GitHub Desktop.

Select an option

Save swashata/453e88b47ee3a7fb9fe21fce991a924c to your computer and use it in GitHub Desktop.
vehicle = {
printStuff: function() {
'use strict';
console.log('this of object method', this);
return function() {
console.log('this of nested regular function expression', this);
}
}
};
vehicle.printStuff()();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment