1 2 3 4 5 6
function pow(x,y) { return Math.pow(x,y); } var x = pow(3, -.5); var y = pow(3, -.5); assertEq(x, y);