Skip to content

Instantly share code, notes, and snippets.

@jimblandy
Created September 6, 2017 22:01
Show Gist options
  • Save jimblandy/adb717da0762cdef32bf383ab2f22151 to your computer and use it in GitHub Desktop.
Save jimblandy/adb717da0762cdef32bf383ab2f22151 to your computer and use it in GitHub Desktop.
Demonstration of `this` value for functions found on `with` operands
let obj = { f: function() { console.log(this === obj); } };
with (obj) f();
// output: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment