sqrt Method 

Returns the square root of a number.


function sqrt(number : Number) : Number

number

Required. A numeric expression for which the square root is calculated.

If number is negative, the return value is NaN.

Show: