forked from FreeCodeCampChina/freecodecamp.cn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dataAsync.js
2040 lines (2038 loc) · 59.6 KB
/
dataAsync.js
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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
var matchArray = [
{
"id" : "560add10cb82ac38a17513be",
"name" : "Learn how Free Code Camp Works",
"challengeType" : "7"
},
{
"id" : "560add37cb82ac38a17513bf",
"name" : "Create a GitHub Account and Join our Chat Rooms",
"challengeType" : "7"
},
{
"id" : "560add56cb82ac38a17513c0",
"name" : "Configure your Code Portfolio",
"challengeType" : "7"
},
{
"id" : "560add71cb82ac38a17513c2",
"name" : "Join a Campsite in Your City",
"challengeType" : "7"
},
{
"id" : "560add8ccb82ac38a17513c4",
"name" : "Learn What to Do If You Get Stuck",
"challengeType" : "7"
},
{
"id" : "aff0395860f5d3034dc0bfc9",
"name" : "Validate US Telephone Numbers",
"challengeType" : "5"
},
{
"id" : "56533eb9ac21ba0edf2244cf",
"name" : "Record Collection",
"challengeType" : "5"
},
{
"id" : "a3f503de51cf954ede28891d",
"name" : "Symmetric Difference",
"challengeType" : "5"
},
{
"id" : "aa2e6f85cab2ab736c9a9b24",
"name" : "Exact Change",
"challengeType" : "5"
},
{
"id" : "a56138aff60341a09ed6c480",
"name" : "Inventory Update",
"challengeType" : "5"
},
{
"id" : "a7bf700cd123b9a54eef01d5",
"name" : "No repeats please",
"challengeType" : "5"
},
{
"id" : "a19f0fbe1872186acd434d5a",
"name" : "Friendly Date Ranges",
"challengeType" : "5"
},
{
"id" : "a2f1d72d9b908d0bd72bb9f6",
"name" : "Make a Person",
"challengeType" : "5"
},
{
"id" : "af4afb223120f7348cdfc9fd",
"name" : "Map the Debris",
"challengeType" : "5"
},
{
"id" : "a3f503de51cfab748ff001aa",
"name" : "Pairwise",
"challengeType" : "5"
},
{
"id" : "bd7158d8c442eddfaeb5bd17",
"name" : "Build a JavaScript Calculator",
"challengeType" : "3"
},
{
"id" : "bd7158d8c442eddfaeb5bd0f",
"name" : "Build a Pomodoro Clock",
"challengeType" : "3"
},
{
"id" : "bd7158d8c442eedfaeb5bd1c",
"name" : "Build a Tic Tac Toe Game",
"challengeType" : "3"
},
{
"id" : "bd7158d8c442eddfaeb5bd1c",
"name" : "Build a Simon Game",
"challengeType" : "3"
},
{
"id" : "bd7158d2c442eddfbeb5bd1f",
"name" : "Get Set for our Algorithm Challenges",
"challengeType" : "7"
},
{
"id" : "a202eed8fc186c8434cb6d61",
"name" : "Reverse a String",
"challengeType" : "5"
},
{
"id" : "a302f7aae1aa3152a5b413bc",
"name" : "Factorialize a Number",
"challengeType" : "5"
},
{
"id" : "aaa48de84e1ecc7c742e1124",
"name" : "Check for Palindromes",
"challengeType" : "5"
},
{
"id" : "a26cbbe9ad8655a977e1ceb5",
"name" : "Find the Longest Word in a String",
"challengeType" : "5"
},
{
"id" : "ab6137d4e35944e21037b769",
"name" : "Title Case a Sentence",
"challengeType" : "5"
},
{
"id" : "a789b3483989747d63b0e427",
"name" : "Return Largest Numbers in Arrays",
"challengeType" : "5"
},
{
"id" : "acda2fb1324d9b0fa741e6b5",
"name" : "Confirm the Ending",
"challengeType" : "5"
},
{
"id" : "afcc8d540bea9ea2669306b6",
"name" : "Repeat a string repeat a string",
"challengeType" : "5"
},
{
"id" : "ac6993d51946422351508a41",
"name" : "Truncate a string",
"challengeType" : "5"
},
{
"id" : "a9bd25c716030ec90084d8a1",
"name" : "Chunky Monkey",
"challengeType" : "5"
},
{
"id" : "ab31c21b530c0dafa9e241ee",
"name" : "Slasher Flick",
"challengeType" : "5"
},
{
"id" : "af2170cad53daa0770fabdea",
"name" : "Mutations",
"challengeType" : "5"
},
{
"id" : "adf08ec01beb4f99fc7a68f2",
"name" : "Falsy Bouncer",
"challengeType" : "5"
},
{
"id" : "a39963a4c10bc8b4d4f06d7e",
"name" : "Seek and Destroy",
"challengeType" : "5"
},
{
"id" : "a24c1a4622e3c05097f71d67",
"name" : "Where do I belong",
"challengeType" : "5"
},
{
"id" : "56533eb9ac21ba0edf2244e2",
"name" : "Caesars Cipher",
"challengeType" : "5"
},
{
"id" : "bd7123c9c441eddfaeb4bdef",
"name" : "Comment your JavaScript Code",
"challengeType" : "1"
},
{
"id" : "bd7123c9c443eddfaeb5bdef",
"name" : "Declare JavaScript Variables",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244a8",
"name" : "Storing Values with the Equal Operator",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244a9",
"name" : "Initializing Variables with the Equal Operator",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244aa",
"name" : "Understanding Uninitialized Variables",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244ab",
"name" : "Understanding Case Sensitivity in Variables",
"challengeType" : "1"
},
{
"id" : "cf1111c1c11feddfaeb3bdef",
"name" : "Add Two Numbers with JavaScript",
"challengeType" : "1"
},
{
"id" : "cf1111c1c11feddfaeb4bdef",
"name" : "Subtract One Number from Another with JavaScript",
"challengeType" : "1"
},
{
"id" : "cf1231c1c11feddfaeb5bdef",
"name" : "Multiply Two Numbers with JavaScript",
"challengeType" : "1"
},
{
"id" : "cf1111c1c11feddfaeb6bdef",
"name" : "Divide One Number by Another with JavaScript",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244ac",
"name" : "Increment a Number with JavaScript",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244ad",
"name" : "Decrement a Number with JavaScript",
"challengeType" : "1"
},
{
"id" : "cf1391c1c11feddfaeb4bdef",
"name" : "Create Decimal Numbers with JavaScript",
"challengeType" : "1"
},
{
"id" : "bd7993c9c69feddfaeb7bdef",
"name" : "Multiply Two Decimals with JavaScript",
"challengeType" : "1"
},
{
"id" : "bd7993c9ca9feddfaeb7bdef",
"name" : "Divide one Decimal by Another with JavaScript",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244ae",
"name" : "Finding a Remainder in JavaScript",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244af",
"name" : "Assignment with Plus Equals",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244b0",
"name" : "Assignment with Minus Equals",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244b1",
"name" : "Assignment with Times Equals",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244b2",
"name" : "Assignment with Divided by Equals",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244b3",
"name" : "Convert Celsius to Fahrenheit",
"challengeType" : "1"
},
{
"id" : "bd7123c9c444eddfaeb5bdef",
"name" : "Declare String Variables",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244b5",
"name" : "Escaping Literal Quotes in Strings",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244b4",
"name" : "Quoting Strings with Single Quotes",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244b6",
"name" : "Escape Sequences in Strings",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244b7",
"name" : "Concatenating Strings with Plus Operator",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244b8",
"name" : "Concatenating Strings with the Plus Equals Operator",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244b9",
"name" : "Constructing Strings with Variables",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244ed",
"name" : "Appending Variables to Strings",
"challengeType" : "1"
},
{
"id" : "bd7123c9c448eddfaeb5bdef",
"name" : "Find the Length of a String",
"challengeType" : "1"
},
{
"id" : "bd7123c9c549eddfaeb5bdef",
"name" : "Use Bracket Notation to Find the First Character in a String",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244ba",
"name" : "Understand String Immutability",
"challengeType" : "1"
},
{
"id" : "bd7123c9c450eddfaeb5bdef",
"name" : "Use Bracket Notation to Find the Nth Character in a String",
"challengeType" : "1"
},
{
"id" : "bd7123c9c451eddfaeb5bdef",
"name" : "Use Bracket Notation to Find the Last Character in a String",
"challengeType" : "1"
},
{
"id" : "bd7123c9c452eddfaeb5bdef",
"name" : "Use Bracket Notation to Find the NthtoLast Character in a String",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244bb",
"name" : "Word Blanks",
"challengeType" : "1"
},
{
"id" : "bd7993c9c69feddfaeb8bdef",
"name" : "Store Multiple Values in one Variable using JavaScript Arrays",
"challengeType" : "1"
},
{
"id" : "cf1111c1c11feddfaeb7bdef",
"name" : "Nest one Array within Another Array",
"challengeType" : "1"
},
{
"id" : "56bbb991ad1ed5201cd392ca",
"name" : "Access Array Data with Indexes",
"challengeType" : "1"
},
{
"id" : "cf1111c1c11feddfaeb8bdef",
"name" : "Modify Array Data With Indexes",
"challengeType" : "1"
},
{
"id" : "56592a60ddddeae28f7aa8e1",
"name" : "Access MultiDimensional Arrays With Indexes",
"challengeType" : "1"
},
{
"id" : "56bbb991ad1ed5201cd392cb",
"name" : "Manipulate Arrays With push",
"challengeType" : "1"
},
{
"id" : "56bbb991ad1ed5201cd392cc",
"name" : "Manipulate Arrays With pop",
"challengeType" : "1"
},
{
"id" : "56bbb991ad1ed5201cd392cd",
"name" : "Manipulate Arrays With shift",
"challengeType" : "1"
},
{
"id" : "56bbb991ad1ed5201cd392ce",
"name" : "Manipulate Arrays With unshift",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244bc",
"name" : "Shopping List",
"challengeType" : "1"
},
{
"id" : "56bbb991ad1ed5201cd392cf",
"name" : "Write Reusable JavaScript with Functions",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244bd",
"name" : "Passing Values to Functions with Arguments",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244be",
"name" : "Global Scope and Functions",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244bf",
"name" : "Local Scope and Functions",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244c0",
"name" : "Global vs Local Scope in Functions",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244c2",
"name" : "Return a Value from a Function with Return",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244c3",
"name" : "Assignment with a Returned Value",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244c6",
"name" : "Stand in Line",
"challengeType" : "1"
},
{
"id" : "bd7123c9c441eddfaeb5bdef",
"name" : "Understanding Boolean Values",
"challengeType" : "1"
},
{
"id" : "cf1111c1c12feddfaeb3bdef",
"name" : "Use Conditional Logic with If Statements",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244d0",
"name" : "Comparison with the Equality Operator",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244d1",
"name" : "Comparison with the Strict Equality Operator",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244d2",
"name" : "Comparison with the Inequality Operator",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244d3",
"name" : "Comparison with the Strict Inequality Operator",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244d4",
"name" : "Comparison with the Greater Than Operator",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244d5",
"name" : "Comparison with the Greater Than Or Equal To Operator",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244d6",
"name" : "Comparison with the Less Than Operator",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244d7",
"name" : "Comparison with the Less Than Or Equal To Operator",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244d8",
"name" : "Comparisons with the Logical And Operator",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244d9",
"name" : "Comparisons with the Logical Or Operator",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244da",
"name" : "Introducing Else Statements",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244db",
"name" : "Introducing Else If Statements",
"challengeType" : "1"
},
{
"id" : "5690307fddb111c6084545d7",
"name" : "Logical Order in If Else Statements",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244dc",
"name" : "Chaining If Else Statements",
"challengeType" : "1"
},
{
"id" : "5664820f61c48e80c9fa476c",
"name" : "Golf Code",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244dd",
"name" : "Selecting from many options with Switch Statements",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244de",
"name" : "Adding a default option in Switch statements",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244df",
"name" : "Multiple Identical Options in Switch Statements",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244e0",
"name" : "Replacing If Else Chains with Switch",
"challengeType" : "1"
},
{
"id" : "5679ceb97cbaa8c51670a16b",
"name" : "Returning Boolean Values from Functions",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244c4",
"name" : "Return Early Pattern for Functions",
"challengeType" : "1"
},
{
"id" : "565bbe00e9cc8ac0725390f4",
"name" : "Counting Cards",
"challengeType" : "1"
},
{
"id" : "56bbb991ad1ed5201cd392d0",
"name" : "Build JavaScript Objects",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244c7",
"name" : "Accessing Objects Properties with the Dot Operator",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244c8",
"name" : "Accessing Objects Properties with Bracket Notation",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244c9",
"name" : "Accessing Objects Properties with Variables",
"challengeType" : "1"
},
{
"id" : "56bbb991ad1ed5201cd392d1",
"name" : "Updating Object Properties",
"challengeType" : "1"
},
{
"id" : "56bbb991ad1ed5201cd392d2",
"name" : "Add New Properties to a JavaScript Object",
"challengeType" : "1"
},
{
"id" : "56bbb991ad1ed5201cd392d3",
"name" : "Delete Properties from a JavaScript Object",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244ca",
"name" : "Using Objects for Lookups",
"challengeType" : "1"
},
{
"id" : "567af2437cbaa8c51670a16c",
"name" : "Testing Objects for Properties",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244cb",
"name" : "Introducing JavaScript Object Notation JSON",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244cc",
"name" : "Accessing Nested Objects in JSON",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244cd",
"name" : "Accessing Nested Arrays in JSON",
"challengeType" : "1"
},
{
"id" : "cf1111c1c11feddfaeb5bdef",
"name" : "Iterate with JavaScript For Loops",
"challengeType" : "1"
},
{
"id" : "56104e9e514f539506016a5c",
"name" : "Iterate Odd Numbers With a For Loop",
"challengeType" : "1"
},
{
"id" : "56105e7b514f539506016a5e",
"name" : "Count Backwards With a For Loop",
"challengeType" : "1"
},
{
"id" : "5675e877dbd60be8ad28edc6",
"name" : "Iterate Through an Array with a For Loop",
"challengeType" : "1"
},
{
"id" : "56533eb9ac21ba0edf2244e1",
"name" : "Nesting For Loops",
"challengeType" : "1"
},
{
"id" : "cf1111c1c11feddfaeb1bdef",
"name" : "Iterate with JavaScript While Loops",
"challengeType" : "1"
},
{
"id" : "5688e62ea601b2482ff8422b",
"name" : "Profile Lookup",
"challengeType" : "1"
},
{
"id" : "cf1111c1c11feddfaeb9bdef",
"name" : "Generate Random Fractions with JavaScript",
"challengeType" : "1"
},
{
"id" : "cf1111c1c12feddfaeb1bdef",
"name" : "Generate Random Whole Numbers with JavaScript",
"challengeType" : "1"
},
{
"id" : "cf1111c1c12feddfaeb2bdef",
"name" : "Generate Random Whole Numbers within a Range",
"challengeType" : "1"
},
{
"id" : "cf1111c1c12feddfaeb6bdef",
"name" : "Sift through Text with Regular Expressions",
"challengeType" : "1"
},
{
"id" : "cf1111c1c12feddfaeb7bdef",
"name" : "Find Numbers with Regular Expressions",
"challengeType" : "1"
},
{
"id" : "cf1111c1c12feddfaeb8bdef",
"name" : "Find Whitespace with Regular Expressions",
"challengeType" : "1"
},
{
"id" : "cf1111c1c13feddfaeb3bdef",
"name" : "Invert Regular Expression Matches with JavaScript",
"challengeType" : "1"
},
{
"id" : "cf1111c1c12feddfaeb9bdef",
"name" : "Create a JavaScript Slot Machine",
"challengeType" : "0"
},
{
"id" : "cf1111c1c13feddfaeb1bdef",
"name" : "Add your JavaScript Slot Machine Slots",
"challengeType" : "0"
},
{
"id" : "cf1111c1c13feddfaeb2bdef",
"name" : "Bring your JavaScript Slot Machine to Life",
"challengeType" : "0"
},
{
"id" : "cf1111c1c11feddfaeb1bdff",
"name" : "Give your JavaScript Slot Machine some Stylish Images",
"challengeType" : "0"
},
{
"id" : "bd7158d8c442eddfbeb5bd1f",
"name" : "Get Set for our Front End Development Projects",
"challengeType" : "7"
},
{
"id" : "bd7158d8c442eddfaeb5bd18",
"name" : "Build a Tribute Page",
"challengeType" : "3"
},
{
"id" : "bd7158d8c242eddfaeb5bd13",
"name" : "Build a Personal Portfolio Webpage",
"challengeType" : "3"
},
{
"id" : "bad87fee1348bd9acde08712",
"name" : "Use Responsive Design with Bootstrap Fluid Containers",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9acde08812",
"name" : "Make Images Mobile Responsive",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd8acde08812",
"name" : "Center Text with Bootstrap",
"challengeType" : "0"
},
{
"id" : "bad87fee1348cd8acdf08812",
"name" : "Create a Bootstrap Button",
"challengeType" : "0"
},
{
"id" : "bad87fee1348cd8acef08812",
"name" : "Create a Block Element Bootstrap Button",
"challengeType" : "0"
},
{
"id" : "bad87fee1348cd8acef08811",
"name" : "Taste the Bootstrap Button Color Rainbow",
"challengeType" : "0"
},
{
"id" : "bad87fee1348cd8acef08813",
"name" : "Call out Optional Actions with Button Info",
"challengeType" : "0"
},
{
"id" : "bad87fee1348ce8acef08814",
"name" : "Warn your Users of a Dangerous Action",
"challengeType" : "0"
},
{
"id" : "bad88fee1348ce8acef08815",
"name" : "Use the Bootstrap Grid to Put Elements Side By Side",
"challengeType" : "0"
},
{
"id" : "bad87fee1347bd9aedf08845",
"name" : "Ditch Custom CSS for Bootstrap",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aedf08845",
"name" : "Use Spans for Inline Elements",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aede08845",
"name" : "Create a Custom Heading",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aedd08845",
"name" : "Add Font Awesome Icons to our Buttons",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aedc08845",
"name" : "Add Font Awesome Icons to all of our Buttons",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aedb08845",
"name" : "Responsively Style Radio Buttons",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aeda08845",
"name" : "Responsively Style Checkboxes",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aed908845",
"name" : "Style Text Inputs as Form Controls",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aec908845",
"name" : "Line up Form Elements Responsively with Bootstrap",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aec908846",
"name" : "Create a Bootstrap Headline",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aec908746",
"name" : "House our page within a Bootstrap Container Fluid Div",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9bec908846",
"name" : "Create a Bootstrap Row",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aec908847",
"name" : "Split your Bootstrap Row",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aec908848",
"name" : "Create Bootstrap Wells",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aec908849",
"name" : "Add Elements within your Bootstrap Wells",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aec908850",
"name" : "Apply the Default Bootstrap Button Style",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aec908852",
"name" : "Create a Class to Target with jQuery Selectors",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aec908853",
"name" : "Add ID Attributes to Bootstrap Elements",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aec908854",
"name" : "Label Bootstrap Wells",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aec908855",
"name" : "Give Each Element a Unique ID",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aec908856",
"name" : "Label Bootstrap Buttons",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aec908857",
"name" : "Use Comments to Clarify Code",
"challengeType" : "0"
},
{
"id" : "561add10cb82ac38a17513be",
"name" : "Claim Your Front End Development Certificate",
"challengeType" : "7"
},
{
"id" : "570add8ccb82ac38a17513c3",
"name" : "Join our LinkedIn Alumni Network",
"challengeType" : "7"
},
{
"id" : "560adc65cb82ac38a17513c2",
"name" : "Join our Subreddit",
"challengeType" : "7"
},
{
"id" : "560adf65cb82ac38a17513c2",
"name" : "Read Coding News on our Medium Publication",
"challengeType" : "7"
},
{
"id" : "560ade65cb82ac38a17513c2",
"name" : "Watch us Code Live on Twitchtv",
"challengeType" : "7"
},
{
"id" : "560add8ccb81ac38a17513c4",
"name" : "Commit to a Goal and a Nonprofit",
"challengeType" : "7"
},
{
"id" : "bd7123c8c441eddfaeb5bdef",
"name" : "Say Hello to HTML Element",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aedf0887a",
"name" : "Headline with the h2 Element",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aedf08801",
"name" : "Inform with the Paragraph Element",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aedf08804",
"name" : "Comment out HTML",
"challengeType" : "0"
},
{
"id" : "bad87fed1348bd9aedf08833",
"name" : "Delete HTML Elements",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aedf08803",
"name" : "Change the Color of Text",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aedf08802",
"name" : "Uncomment HTML",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aedf08833",
"name" : "Fill in the Blank with Placeholder Text",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aedf08805",
"name" : "Use CSS Selectors to Style Elements",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aecf08806",
"name" : "Use a CSS Class to Style an Element",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aefe08806",
"name" : "Style Multiple Elements with a CSS Class",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aedf08806",
"name" : "Change the Font Size of an Element",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aede08807",
"name" : "Set the Font Family of an Element",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aedf08807",
"name" : "Import a Google Font",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aedf08808",
"name" : "Specify How Fonts Should Degrade",
"challengeType" : "0"
},
{
"id" : "bad87fee1348bd9aedf08812",
"name" : "Add Images to your Website",
"challengeType" : "0"