Heim > Artikel > Web-Frontend > So verwenden Sie das Math.PI-Pi-Attribut in JavaScript_Grundkenntnisse
Dadurch wird das Verhältnis des Umfangs eines Kreises zu seinem Durchmesser zurückgegeben, etwa 3,14159.
Grammatik
Math.PI
Beispiel:
<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>
Dies führt zu folgenden Ergebnissen:
Property Value is : 3.141592653589793