-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 906 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (24 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE >
<html>
<head>
<title>
JSExamPrep
</title>
</head>
<body>
<h1>MTA 98-382 Exam Prep</h1>
<h2>Complete or debug code that uses assignment and arithmetic operators</h2>
<ul>
<li><a href="/assignment.js">assignment;</a></li>
<li><a href="/decrement.js">decrement;</a></li>
<li><a href="/increment.js">increment;</a></li>
<li><a href="/addition.js">addition;</a></li>
<li><a href="/subtraction.js">subtraction;</a></li>
<li><a href="/division.js">division;</a></li>
<li><a href="/multiplication.js">multiplication;</a></li>
<li><a href="/modulus.js">modulus;</a></li>
<li><a href="/compoundAssignmentOperators.js">compound assignment operators;</a></li>
</ul>
<script src="index.js"></script>
</body>
</html>