-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path7d.html
More file actions
20 lines (20 loc) · 733 Bytes
/
Copy path7d.html
File metadata and controls
20 lines (20 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>Math Object Properties and Methods</title>
</head>
<body>
<h1 id="heading">Math Object Properties and Methods</h1>
<button onclick="absValue()">Absolute Value</button>
<button onclick="ceilValue()">Ceiling Value</button>
<button onclick="floorValue()">Floor Value</button>
<button onclick="maxValue()">Maximum Value</button>
<button onclick="minValue()">Minimum Value</button>
<button onclick="powValue()">Power Value</button>
<button onclick="randomValue()">Random Value</button>
<button onclick="roundValue()">Round Value</button>
<button onclick="sqrtValue()">Square Root Value</button>
<p id="output"></p>
<script src="7d.js"></script>
</body>
</html>