2018-09-30 23:01:58 +01:00
---
id: 587d8254367417b2b2512c70
title: Create and Add to Sets in ES6
challengeType: 1
2019-08-05 09:17:33 -07:00
forumTopicId: 301636
2018-09-30 23:01:58 +01:00
---
## Description
< section id = 'description' >
Now that you have worked through ES5, you are going to perform something similar in ES6. This will be considerably easier. ES6 contains a built-in data structure < code > Set< / code > so many of the operations you wrote by hand are now included for you. Let's take a look:
To create a new empty set:
< code > var set = new Set();< / code >
You can create a set with a value:
< code > var set = new Set(1);< / code >
You can create a set with an array:
< code > var set = new Set([1, 2, 3]);< / code >
Once you have created a set, you can add the values you wish using the < code > add< / code > method:
2019-06-04 00:07:22 -07:00
```js
var set = new Set([1, 2, 3]);
set.add([4, 5, 6]);
```
2018-09-30 23:01:58 +01:00
As a reminder, a set is a data structure that cannot contain duplicate values:
2019-06-04 00:07:22 -07:00
```js
var set = new Set([1, 2, 3, 1, 2, 3]);
// set contains [1, 2, 3] only
```
2018-09-30 23:01:58 +01:00
< / section >
## Instructions
< section id = 'instructions' >
For this exercise, return a set with the following values: < code > 1, 2, 3, 'Taco', 'Cat', 'Awesome'< / code >
< / section >
## Tests
< section id = 'tests' >
```yml
2018-10-04 14:37:37 +01:00
tests:
2018-11-07 23:13:58 +11:00
- text: 'Your < code > Set</ code > should only contain the values < code > 1, 2, 3, Taco, Cat, Awesome</ code > .'
2019-07-24 05:06:12 -07:00
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");})());'
2018-09-30 23:01:58 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
function checkSet() {
var set = new Set([1, 2, 3, 3, 2, 1, 2, 3, 1]);
// change code below this line
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
// change code above this line
2019-03-21 09:45:45 -06:00
console.log(Array.from(set));
2018-09-30 23:01:58 +01:00
return set;
}
checkSet();
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
function checkSet(){var set = new Set([1,2,3,'Taco','Cat','Awesome']);
return set;}
```
< / section >