The function SQRT takes a number and returns the square root of that number.
This function takes a single Number as input. It outputs another Number: the square root of the input.
Declaration
SQRT(number) -> square_root
Parameters
number (type: Number
)
The number to find the square root of.
Return Values
square_root (type: Number
)
The square root the given Number.
Examples
The following example takes the number 16 and returns the square root:
SQRT(16) -> 4