michael@0: function pow(x,y) { michael@0: return Math.pow(x,y); michael@0: } michael@0: var x = pow(3, -.5); michael@0: var y = pow(3, -.5); michael@0: assertEq(x, y);