Details of the use of the ES1en.es2EN2 attribute in JavaScript
- 2020-06-15 07:40:28
- OfStack
This will return the square root of 2 is approximately 1.414.
grammar
Math.SQRT2
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 the following results:
Property Value is : 1.4142135623730951