Returns the square root of a number.
function sqrt(number : Number) : Number
Required. A numeric expression for which the square root is calculated.
If number is negative, the return value is NaN.
Version 1
Math Object