-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsPractice.html
57 lines (46 loc) · 1.71 KB
/
jsPractice.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<!--
This assignment is one of the most challenging assignments for me. Question number one and two are easy and i
have attempted them. Question 3 and 4 are really hard for me. Understanding the question has taken me more time
and i do not have all the solutions. I have tried solving array to list and to some extent implemented the
deep comparison. I am sure that my answers are not 100% perfect. I am looking forward for the solutions.
-->
<html lang="en">
<head>
<!-- add mocha css, to show results -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mocha/3.2.0/mocha.css">
<!-- add mocha framework code -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/3.2.0/mocha.js"></script>
<script>
mocha.setup('bdd'); // minimal setup
</script>
<!-- add chai -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/3.5.0/chai.js"></script>
<script>
// chai has a lot of stuff, let's make assert global
let assert = chai.assert;
</script>
</head>
<body>
<script src="jsPractice.js"> </script>
<!-- the script with tests (describe, it...) -->
<!-- <script src="test.js"></script>
<script src="calculatorTest.js"></script> -->
<!-- the element with id="mocha" will contain test results -->
<div id="mocha"></div>
<!-- run tests! -->
<script>
mocha.run();
</script>
<div id="validate">
<a href="https://validator.w3.org/check/referer">
<img src="w3c-html.png" alt="html validator">
</a><br>
<a href="https://jigsaw.w3.org/css-validator/check/referer">
<img src="w3c-css.png" alt="Valid CSS!"></a><br>
<a href="https://webster.cs.washington.edu/jslint?referer">
<img src="jslint.png" alt="JavaScript Lint">
</a>
</div>
</body>
</html>