JavaScript Basics
JavaScript Objects
JavaScript Advanced
JS Useful References
JS Useful Resources
Selected Reading
© 2013 TutorialsPoint.COM
|
Javascript Math - SQRT2 Property
Advertisements
Description:
This returns square root of 2 which is approximately 1.414.
Syntax:
Example:
<html>
<head>
<title>JavaScript Math SQRT2 Property</title>
</head>
<body>
<script type="text/javascript">
var property_value = Math.SQRT2
document.write("Property Value is : " + property_value);
</script>
</body>
</html>
|
This will produce following result:
Property Value is : 1.4142135623730951
|
To understand it in better way you can Try it yourself.
Advertisements
|
|
|