Skip to content

Instantly share code, notes, and snippets.

@abhinavdhasmana
Created March 30, 2017 04:27
Show Gist options
  • Save abhinavdhasmana/3c27bb33a22f37c650e554482ea91527 to your computer and use it in GitHub Desktop.
Save abhinavdhasmana/3c27bb33a22f37c650e554482ea91527 to your computer and use it in GitHub Desktop.
'use strict'
const testObj = {
a: 10,
whoamI: function() {
console.log(this);
}
};
testObj.whoamI();
// Output
// { a: 10, whoamI: [Function] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment