Source code

Revision control

Copy as Markdown

Other Tools

// |jit-test| --ion-eager
x = [0, 0]
Object.freeze(x).map(function() {
x.length = 6
})
assertEq(x.length,2);