SQRT
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
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:
Last updated