<html>
<head>
<title>
Using Math Functions
</title>
</head>
<body>
<script type="text/javaScript">
document.write("Floor :"+Math.floor(12.7)+"<BR/>");
document.write("Log :"+Math.log(12.7)+"<BR/>");
document.write("Max :"+Math.max(12.7,11,25,67)+"<BR/>");
document.write("Min :"+Math.min(3,78,90,12.7)+"<BR/>");
document.write("pow :"+Math.pow(10,2)+"<BR/>");
document.write("Random :"+Math.random()+"<BR/>");
document.write("Round :"+Math.round(12.7)+"<BR/>");
document.write("Sin:"+Math.sin(45)+"<BR/>");
document.write("Sqrt :"+Math.sqrt(12.7)+"<BR/>");
document.write("Exp:"+Math.exp(10)+"<BR/>");
document.write("Tan:"+Math.tan(45)+"<BR/>");
</script>
</body>
</html>