Temat: Math
<script>
var pi=Math.PI;
var pier=Math.sqrt(9); // pierwiastek (liczba)
var potega=Math.pow(2, 3); // potega (liczba, potega)
document.write(pi, "<hr>");
document.write(pier, "<hr>");
document.write(potega, "<hr>");
</script>