sqrt

Calculates the square root of a number.

Function

result = sqrt(input)

Arguments

ArgumentData Type
inputnumeric
resultdecimal

Comments

If the input number is negative then the result will be null.

Examples

result = sqrt(64)
/* result = 8 */