fix(challenges): fixed a typo in Data structures challege
fixed typo in data structures: create and add to sets in ES6 ISSUES CLOSED: freeCodeCamp/freeCodeCamp#17786
This commit is contained in:
committed by
Kristofer Koishigawa
parent
93295433c7
commit
a4f810e845
@ -993,8 +993,8 @@
|
||||
],
|
||||
"tests": [
|
||||
{
|
||||
"text": "Your <code>Set</code> should only contains the values <code>1, 2, 3, Taco, Cat, Awesome</code>.",
|
||||
"testString": "assert(function(){var test = checkSet(); return (test.size == 6) && test.has(1) && test.has(2) && test.has(3) && test.has('Taco') && test.has('Cat') && test.has('Awesome');}, 'Your <code>Set</code> should only contains the values <code>1, 2, 3, Taco, Cat, Awesome</code>.');"
|
||||
"text": "Your <code>Set</code> should only contain the values <code>1, 2, 3, Taco, Cat, Awesome</code>.",
|
||||
"testString": "assert(function(){var test = checkSet(); return (test.size == 6) && test.has(1) && test.has(2) && test.has(3) && test.has('Taco') && test.has('Cat') && test.has('Awesome');}, 'Your <code>Set</code> should only contain the values <code>1, 2, 3, Taco, Cat, Awesome</code>.');"
|
||||
}
|
||||
],
|
||||
"releasedOn": "Feb 17, 2017",
|
||||
|
Reference in New Issue
Block a user