Navigator 2.0, Internet Explorer 3.0
Math.sqrt(x)
Any numeric value or expression greater than or equal to zero.
The square root of x.
Math.sqrt() returns the square root of its argument, which must be greater than or equal to zero.
You can compute roots other than the square root of a number with Math.pow(). For example:
function sq_rt(x) { return Math.pow(x,1/2); } function cube_rt(x) { return Math.pow(x,1/3); }
This HTML Help has been published using the chm2web software. |