Number.Sqrt
Returns the square root of the number.
function (optionalnumber
as nullable any) as nullable any
Returns the square root of
number
. If number
is null, Number.Sqrt
returns null. If it is a negative value, Number.NaN
is returned (Not a number).Number.Operations
Find the square root of 625.
Number.Sqrt(625)
25
Find the square root of 85.
Number.Sqrt(85)
9.2195444572928871
Last modified 4yr ago