Files
freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/data-structures/create-and-add-to-sets-in-es6.spanish.md
2018-10-08 13:34:43 -04:00

74 lines
2.1 KiB
Markdown

---
id: 587d8254367417b2b2512c70
title: Create and Add to Sets in ES6
localeTitle: Crear y agregar a conjuntos en ES6
challengeType: 1
---
## Description
<section id='description'>
Ahora que ha trabajado con ES5, va a realizar algo similar en ES6. Esto será considerablemente más fácil. ES6 contiene una estructura de datos incorporada <code>Set</code> muchas de las operaciones que ha escrito a mano se incluyen ahora para usted. Echemos un vistazo:
Para crear un nuevo conjunto vacío:
<code>var set = new Set();</code>
Puede crear un conjunto con un valor:
<code>var set = new Set(1);</code>
Puede crear un conjunto con una matriz:
<code>var set = new Set([1, 2, 3]);</code>
Una vez que haya creado un conjunto, puede agregar los valores que desee utilizando el método de <code>add</code> :
<blockquote>var set = new Set([1, 2, 3]);<br>set.add([4, 5, 6]);</blockquote>
Como recordatorio, un conjunto es una estructura de datos que no puede contener valores duplicados:
<blockquote>var set = new Set([1, 2, 3, 1, 2, 3]);<br>// set contains [1, 2, 3] only</blockquote>
</section>
## Instructions
<section id='instructions'>
Para este ejercicio, devuelva un conjunto con los siguientes valores: <code>1, 2, 3, &#39;Taco&#39;, &#39;Cat&#39;, &#39;Awesome&#39;</code>
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: &#39;Tu <code>Set</code> solo debe contener los valores <code>1, 2, 3, Taco, Cat, Awesome</code> &#39;.
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>.");'
```
</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
// change code above this line
console.log(set);
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>