JavaScript Math Object
The JavaScript Math object allows you to perform mathematical tasks on numbers.
<h2>JavaScript Math.PI</h2>
<p>Посмотрим, как будет выглядеть число Пи:</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = Math.PI;
</script>
<h2>JavaScript Math.PI</h2>
<p>Посмотрим, как будет выглядеть число Пи:</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = Math.PI;
</script>
Комментарии
Отправить комментарий