Re: Strict mode callbacks and setTimeout

On Jul 6, 2011, at 4:35 PM, Cameron McCormack wrote:

>   It looks like no implementation implements the ES5
> requirement that
> 
>  (function() { return this }).call(undefined)
> 
> return undefined.  Did I test that correctly?  (Maybe IE is doing
> something different for native Functions and setTimeout.)

Did you mean:
(function() {"use strict"; return this}).call(undefined)

Received on Thursday, 7 July 2011 00:00:01 UTC