Skip to content

Instantly share code, notes, and snippets.

@hafeez-syed
Created January 18, 2017 23:57
Show Gist options
  • Save hafeez-syed/27a5ce78a24e7fe6abe3c44057b359d7 to your computer and use it in GitHub Desktop.
Save hafeez-syed/27a5ce78a24e7fe6abe3c44057b359d7 to your computer and use it in GitHub Desktop.
function strictPerson() {
'use strict';
console.log(this); // undefined
}
strictPerson();
function linientPerson() {
console.log(this); // window
}
linientPerson();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment