Link Search Menu Expand Document

Math.sqrt methods

Explanation Find the quare root.
Call format var v = Math.sqrt (x)
Return value Returns the square root of x in Number.
Arguments Number x Value to find the square root
Exception None
Example of use
var v1 = Math.sqrt (2);
print (v1, "¥n");
var v2 = Math.sqrt (16);
print (v2, "¥n");
Related item pow method