Skip to content

Instantly share code, notes, and snippets.

@cawel
Last active March 14, 2018 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cawel/39e86259aaa1d66ba2491abf50f98fca to your computer and use it in GitHub Desktop.
Save cawel/39e86259aaa1d66ba2491abf50f98fca to your computer and use it in GitHub Desktop.
JavaScript Interview Question
var person = {
_name: 'John Doe',
getSecretIdentity: function (){
return this._name;
}
};
var stoleSecretIdentity = person.getSecretIdentity;
console.log(stoleSecretIdentity());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment