JavaScript - Propriété Math PI
La description
Il renvoie le rapport de la circonférence d'un cercle à son diamètre qui est d'environ 3,14159.
Syntaxe
Sa syntaxe est la suivante -
Math.PI
Exemple
Essayez l'exemple de programme suivant.
<html>
<head>
<title>JavaScript Math PI Property</title>
</head>
<body>
<script type = "text/javascript">
var property_value = Math.PI
document.write("Property Value is : " + property_value);
</script>
</body>
</html>
Production
Property Value is : 3.141592653589793