1 2 3 4 5 6 7 8 9 10 11
function foo(z) { var x = 2; if (z) { x = 2.5; } var y = x * 10; assertEq(y, 20); } foo(false);