Does anyone know if there is any significant performance gains/losses when using the methods of the Math class vs. an Operator?

For example, if I'm just trying to square a number, are there any gains/losses in performance if I use Math.pow(myValue, 2) or just (myValue * myValue)?