forked from seanrreid/js-101-exercises
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathindex.js
More file actions
473 lines (436 loc) · 9.68 KB
/
Copy pathindex.js
File metadata and controls
473 lines (436 loc) · 9.68 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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
Number.isInteger =
Number.isInteger ||
function(value) {
return (
typeof value === "number" &&
isFinite(value) &&
Math.floor(value) === value
);
};
function isNumber(n) {
return typeof n === "number";
}
function repeatString(text, n) {
var result = "";
for (var i = 0; i < n; i++) {
result += text;
}
return result;
}
function showError(element) {
var oldClass = element.className;
element.className += " btn-danger";
element.innerHTML = "Hmm, not quite";
setTimeout(function() {
element.className = oldClass;
element.innerHTML = "Run";
}, 3000);
}
function showSuccess(element) {
var oldClass = element.className;
element.className += " btn-success";
element.innerHTML = "It works!";
setTimeout(function() {
element.className = oldClass;
element.innerHTML = "Run";
}, 3000);
}
function testDeclare(element) {
try {
var result = lvl1exercise1();
if (result !== null) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testDeclareNumber(element) {
try {
var result = lvl1exercise2();
if (typeof result !== 'number') {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testDeclareFloat(element) {
try {
var result = lvl1exercise3();
if (typeof result !== 'number' || Number.isInteger(result)) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testDeclareString(element) {
try {
var result = lvl1exercise4();
if (result !== "Hello World!") {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testDeclareArray(element) {
try {
var result = lvl1exercise5();
if (
!(result.length === 2 && result[0] === "Hello World!" && result[1] === 4)
) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testDeclareObject(element) {
try {
var result = lvl1exercise6();
const valuesAreCorrect = result.key1 === "Hello World!" && result.key2 === 4;
const objectHasTwoKeys = Object.keys(result).length === 2;
if (!valuesAreCorrect || !objectHasTwoKeys) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testDeclareBoolean(element) {
try {
var result = lvl1exercise7();
if (result !== false) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testAdd(element) {
try {
const result1correct = lvl2exercise1(2, 3) !== 5;
const result2correct = lvl2exercise1(99, 1) !== 100;
const result3correct = lvl2exercise1(-10, 10) !== 0;
if (result1correct || result2correct || result3correct) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testSubtract(element) {
try {
const result1correct = lvl2exercise2(2, 3) !== -1;
const result2correct = lvl2exercise2(99, 1) !== 98;
const result3correct = lvl2exercise2(-10, 10) !== -20;
if (result1correct || result2correct || result3correct) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testMultiply(element) {
try {
const result1correct = lvl2exercise3(2, 3) !== 6;
const result2correct = lvl2exercise3(99, 1) !== 99;
const result3correct = lvl2exercise3(-10, 10) !== -100;
if (result1correct || result2correct || result3correct) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testDivide(element) {
try {
const result1correct = lvl2exercise4(30, 3) !== 10;
const result2correct = lvl2exercise4(99, 1) !== 99;
const result3correct = lvl2exercise4(-10, 10) !== -1;
if (result1correct || result2correct || result3correct) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testAssign(element) {
try {
const result1correct = lvl2exercise5(30) !== 32;
const result2correct = lvl2exercise5(99) !== 101;
const result3correct = lvl2exercise5(-10) !== -8;
if (result1correct || result2correct || result3correct) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testConcatenation1(element) {
try {
var result = lvl3exercise1();
if (result !== "helloworld") {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testConcatenation2(element) {
try {
var result = lvl3exercise2();
if (result !== "hello12") {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testConvert(element) {
try {
var result = lvl3exercise3();
if (result !== "12") {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testStringLength(element) {
try {
var result = lvl3exercise4(12);
if (result !== 12) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testStringIndex(element) {
try {
var result = lvl3exercise5(12);
if (result !== 6) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testTrue(element) {
try {
var result = lvl4exercise1(12);
if (result !== true) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testFalse(element) {
try {
var result = lvl4exercise2(12);
if (result !== false) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testNot(element) {
try {
var result1 = lvl4exercise3(true);
var result2 = lvl4exercise3(false);
if (result1 !== false || result2 !== true) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testAnd(element) {
try {
var result1 = lvl4exercise4(true, true);
var result2 = lvl4exercise4(true, false);
var result3 = lvl4exercise4(false, true);
var result4 = lvl4exercise4(false, false);
if (
result1 !== true ||
result2 !== false ||
result3 !== false ||
result4 !== false
) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testOr(element) {
try {
var result1 = lvl4exercise5(true, true);
var result2 = lvl4exercise5(true, false);
var result3 = lvl4exercise5(false, true);
var result4 = lvl4exercise5(false, false);
if (
result1 !== true ||
result2 !== true ||
result3 !== true ||
result4 !== false
) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testEquivalence(element) {
try {
var result1 = lvl4exercise6(true, true);
var result2 = lvl4exercise6(true, false);
var result3 = lvl4exercise6(false, true);
var result4 = lvl4exercise6(false, false);
if (
result1 !== true ||
result2 !== false ||
result3 !== false ||
result4 !== true
) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testArrayPush(element) {
try {
var result = lvl5exercise1();
if (result.length !== 3 || result[2] !== "hello") {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testArrayPop(element) {
try {
var result = lvl5exercise2();
if (result.length !== 1) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testArrayLength(element) {
try {
var result = lvl5exercise3();
if (result !== 2) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testArrayIndex(element) {
try {
var result = lvl5exercise4();
if (result !== 1) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testConditional(element) {
try {
var result1 = lvl6exercise1(1);
var result2 = lvl6exercise1(2);
var result3 = lvl6exercise1(3);
if (result1 !== "hello" || result2 !== "world" || result3 !== "bye") {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
const tenHello = repeatString("hello", 10);
function testFor(element) {
try {
var result = lvl6exercise2();
if (
result.length !== 10 ||
result.join(" ") !==
"hello hello hello hello hello hello hello hello hello hello"
) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testWhile(element) {
try {
var result = lvl6exercise3();
if (!Array.isArray(result) || result.length !== 0) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function testFunction(element) {
try {
var result = finalFunction(8);
var result2 = finalFunction(99);
var result3 = finalFunction(-1);
var result4 = finalFunction('potato');
if (
(!Array.isArray(result) || result.length !== 8) ||
(!Array.isArray(result2) || result2.length !== 99) ||
(!Array.isArray(result3) || result3.length !== 0) ||
(!Array.isArray(result4) || result4.length !== 0)
) {
throw false;
}
showSuccess(element);
} catch (err) {
showError(element);
}
}
function evalExercise(element) {
var functionToEvaluate = element.getAttribute("id");
window[functionToEvaluate](element);
}