Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
1
2 function foo(a, b, c) {
3 var res = 0;
4 for (var b = 0; b < c; b++)
5 res += a[b];
6 return res;
7 }
8 assertEq(foo([1,2,3], 0, 10), NaN);