1 2 3 4 5 6 7 8 9
function f(a, b) { return a == b; } var X = "" + Math.random(); var Y = "" + Math.random(); assertEq(f(X + Y, X + Y), true);