-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbenchmark.html
More file actions
28 lines (28 loc) · 1.57 KB
/
benchmark.html
File metadata and controls
28 lines (28 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="benchmark.js"></script>
<title>Benchmark</title>
</head>
<body>
<button class="btn btn-primary mt-4 mb-4 verify-btn" onclick="forLoopBenchMark()">For Loop Benchmark</button>
<button class="btn btn-primary mt-4 mb-4 verify-btn" onclick="forEachBenchMark()">ForEach Benchmark</button>
<button class="btn btn-primary mt-4 mb-4 verify-btn" onclick="activeforLoopBenchMark()">Dynamic For Loop Benchmark</button>
<button class="btn btn-primary mt-4 mb-4 verify-btn" onclick="activeforEachBenchMark()">Dynamic ForEach Benchmark</button>
<button class="btn btn-outline-success" onclick="documentFrag()"> Fragment</button>
<div class="container">
<p id="forLoopOutput" class="text-center p-1" ></p>
<p id="forEachOutput" class="text-center p-1"></p>
<p id="DynamicforLoopOutput" class="text-center p-1"></p>
<p id="DynamicforEachOutput" class="text-center p-1"></p>
</div>
<ul id="list"></ul>
</body>
</html>