Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
michael@0 | 1 | function f(s) { |
michael@0 | 2 | return arguments[s]; |
michael@0 | 3 | } |
michael@0 | 4 | |
michael@0 | 5 | for (var i = 0; i < 10; ++i) |
michael@0 | 6 | assertEq(f(String(i+1), 0,1,2,3,4,5,6,7,8,9), i); |