hoist-08.js (95B)
1 function foo(x,n) { 2 for (var i = -5; i < n; i++) { 3 x[i] = 10; 4 } 5 } 6 foo([1,2,3,4,5],5);