sqrt()
Returns the square root of the given numeric value.
Syntax
sqrt
(
value
)
Parameters
Parameter
Type
Description
value
Number
Numeric value to take root of.
Return Value
Number representing the square root of the input.
Examples
sqrt
(
25
)
; // returns 5
See also
sqr
sqrt