Claude Pache (2013-02-26T10:13:47.000Z)
github at esdiscuss.org (2013-07-12T02:26:27.579Z)
An alternative to a writable `length` property, is to make it configurable and nonwritable. It would prevent the issue of accidental assignments to the `length` property that used be ignored in non-strict mode (they'll still be ignored), but it would allow to modify its value using `Object.defineProperty`. -Claude