Raises a specified number to the specified power.
[Visual Basic] Public Shared Function Pow( _ ByVal x As Double, _ ByVal y As Double _ ) As Double [C#] public static double Pow( double x, double y ); [C++] public: static double Pow( double x, double y ); [JScript] public static function Pow( x : double, y : double ) : double;
Returns x raised to the power y.