--- id: 56533eb9ac21ba0edf2244ad title: Decrement a Number with JavaScript challengeType: 1 videoUrl: '' localeTitle: Disminuir un número con JavaScript --- ## Description
Puede disminuir o disminuir fácilmente una variable por una 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 .
## Tests
```yml tests: - text: myVar debe ser igual a 10 testString: 'assert(myVar === 10, "myVar should equal 10");' - text: myVar = myVar - 1; debería ser cambiado testString: 'assert(/var\s*myVar\s*=\s*11;\s*\/*.*\s*([-]{2}\s*myVar|myVar\s*[-]{2});/.test(code), "myVar = myVar - 1; should be changed");' - text: Utilice el -- operador en myVar testString: 'assert(/[-]{2}\s*myVar|myVar\s*[-]{2}/.test(code), "Use the -- operator on myVar");' - text: No cambie el código por encima de la línea testString: 'assert(/var myVar = 11;/.test(code), "Do not change code above the line");' ```
## Challenge Seed
```js var myVar = 11; // Only change code below this line myVar = myVar - 1; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```