Skip to content

Instantly share code, notes, and snippets.

@luongs3
Created January 1, 2020 03:47
Show Gist options
  • Save luongs3/cb6d39333a79b1200d8d66ca270f22d4 to your computer and use it in GitHub Desktop.
Save luongs3/cb6d39333a79b1200d8d66ca270f22d4 to your computer and use it in GitHub Desktop.
function foo() {
return this;
}
// Non-Strict Mode
foo.call(1) === 1; // false.
// Bởi foo.call(1) sẽ trả ra giá trị là một object, tương đương với `new Number(1)`
// Strict Mode
foo.call(1) === 1; // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment