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:
Guy Even
2018-07-05 15:27:46 +03:00
committed by Kristofer Koishigawa
parent 93295433c7
commit a4f810e845

View File

@ -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",