pow [function]

pow( x, y )

returns x raised to the power y, as real

pow( 2, 5 ); // real (32)
pow( 9, 0.5 ); // real (3)
pow( -1, 0.5 ); // null; Warning: pow(): mathematical error