Brendan Eich (2013-11-27T01:23:48.000Z)
Brendan Eich wrote:
> function f(a = arguments[1] = 42, b) {
>   "use strict";
>   ...
> } 

Fixed as cited above -- what I'd written had no observably different 
outcome in sloppy vs. strict mode.

/be
domenic at domenicdenicola.com (2013-12-10T01:24:17.496Z)
Brendan Eich wrote:
> ```js
> function f(a = arguments[1] = 42, b) {
>   "use strict";
>   ...
> } 
> ```

Fixed as cited above -- what I'd written had no observably different 
outcome in sloppy vs. strict mode.