--- id: 56533eb9ac21ba0edf2244ac title: Increment a Number with JavaScript challengeType: 1 videoUrl: '' localeTitle: Incrementar un número con JavaScript --- ## Description
Puede incrementar o agregar fácilmente uno a una variable con el operador ++ . i++; es el equivalente de i = i + 1; Nota
La línea entera se convierte en i++; , eliminando la necesidad del signo igual.
## Instructions
Cambie el código para usar el operador ++ en myVar . Insinuación
Obtenga más información sobre los operadores aritméticos - Incremento (++) .
## Tests
```yml tests: - text: myVar debe ser igual a 88 testString: 'assert(myVar === 88, "myVar should equal 88");' - text: myVar = myVar + 1; debería ser cambiado testString: 'assert(/var\s*myVar\s*=\s*87;\s*\/*.*\s*([+]{2}\s*myVar|myVar\s*[+]{2});/.test(code), "myVar = myVar + 1; should be changed");' - text: Usa el operador ++ testString: 'assert(/[+]{2}\s*myVar|myVar\s*[+]{2}/.test(code), "Use the ++ operator");' - text: No cambie el código por encima de la línea testString: 'assert(/var myVar = 87;/.test(code), "Do not change code above the line");' ```
## Challenge Seed
```js var myVar = 87; // Only change code below this line myVar = myVar + 1; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```