Math sqrt( ) Method
The Math.sqrt() method in JavaScript is used to square root of the number passed as parameter to the function.
Parameters: This method accepts a single parameter as mentioned above and described below:
value which hold the number whose square root is to be calculated.
Returns: Square root of the number passed as parameter passed as parameter.
Last updated