forked from bethrobson/Head-First-JavaScript-Programming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththingamajig.html
More file actions
64 lines (56 loc) · 989 Bytes
/
thingamajig.html
File metadata and controls
64 lines (56 loc) · 989 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
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
58
59
60
61
62
63
64
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Thing-a-ma-jig</title>
</head>
<body>
</body>
<script>
function clunk(times) {
var num = times;
while (num > 0) {
display("clunk");
num = num - 1;
}
}
function thingamajig(size) {
var facky = 1;
clunkCounter = 0;
if (size == 0) {
display("clank");
} else if (size == 1) {
display("thunk");
} else {
while (size > 1) {
facky = facky * size;
size = size - 1;
}
clunk(facky);
}
}
function display(output) {
console.log(output);
clunkCounter = clunkCounter + 1;
}
var clunkCounter = 0;
thingamajig(0);
console.log(clunkCounter);
clunkCounter = 0;
thingamajig(1);
console.log(clunkCounter);
clunkCounter = 0;
thingamajig(2);
console.log(clunkCounter);
clunkCounter = 0;
thingamajig(3);
console.log(clunkCounter);
clunkCounter = 0;
thingamajig(4);
console.log(clunkCounter);
clunkCounter = 0;
thingamajig(5);
console.log(clunkCounter);
</script>
</body>
</html>