My Profile
Gifts
Active Members
TodayLast 7 Days
more...
|
Math Object - Example
This article explains about JavaScript math Object
Let's have a look at simple example that deals working with some of the math object 's functions.
<html>
<head>
<h2>Math Object demo</h2>
<script type="text/javascript">
alert("Absolute: "+ Math.abs(-2))
alert("PI: " + Math.PI)
alert("cos: " + Math.cos(0) )
</script>
</head>
<body></body>
</html>
In a similer mannar we can work with other functions of the math object too.
|
|