AvailabilityJavaScript 1.0; JScript 1.0; ECMAScript v1 SynopsisMath.sqrt(x) Arguments
ReturnsThe square root of x. Returns NaN if x is less than zero. DescriptionMath.sqrt( ) computes the square root of a number. Note, however, that you can compute arbitrary roots of a number with Math.pow( ). For example: Math.cuberoot = function(x){ return Math.pow(x,1/3); } Math.cuberoot(8); // Returns 2 |