Search w3schools.com:

SHARE THIS PAGE

VBScript Sqr Function


VBScript Reference Complete VBScript Reference

The Sqr function returns the square root of a number.

Note: The number parameter cannot be a negative value.

Syntax

Sqr(number)

Parameter Description
number Required. A valid numeric expression >= 0

Example

Example

<script type="text/vbscript">

document.write(Sqr(9) & "<br />")
document.write(Sqr(0) & "<br />")
document.write(Sqr(47))

</script>

The output of the code above will be:

3
0
6.85565460040104

Try it yourself »

VBScript Reference Complete VBScript Reference

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]