Skip to content

Instantly share code, notes, and snippets.

@arunoda
Created October 29, 2011 04:22
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 arunoda/1324073 to your computer and use it in GitHub Desktop.
Save arunoda/1324073 to your computer and use it in GitHub Desktop.
Strict Mode Test
function a() {
"use strict"
function b() {
console.log(arguments.callee.caller);
}
b();
}
a();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment