Tagged Questions
1
vote
2answers
82 views
strict mode return this w/o violation
I want to have my cake and eat it too: I want to have a method that returns this for chaining when it is bound to an object but returns undefined when it is called with a null|undefined scope. This ...
7
votes
2answers
516 views
Getting a reference to the global object in an unknown environment in strict mode
What is the recommended way to get a handle to the global object in ES5 strict mode in an unknown host environment?
ECMAScript doesn't provide a built-in way to reference the global object that I'm ...
1
vote
2answers
288 views
Must we pay attention to JavaScript “strict mode”?
Reading about ECMAScript 5's strict mode I learn that:
Certain language functions are so pervasive that performing runtime
checks has considerable performance cost. A few strict mode tweaks,
...