If you do any mathematics you will come across special numbers. Create a new page called special.html and put this code inside the script element:
var pi=Math.PI;
alert('Pi is '+pi);
Try it. Note that PI is a property of the Math object and not a method (which is why there are no brackets). There are others which you can look up if you ever need them.