--- id: cf1111c1c11feddfaeb6bdef title: Divide One Number by Another with JavaScript localeTitle: Divide un número por otro con JavaScript challengeType: 1 --- ## Description
También podemos dividir un número por otro. JavaScript usa el símbolo / para la división. Ejemplo
myVar = 16 / 2; // assigned 8
## Instructions
Cambia el 0 para que el quotient sea ​​igual a 2 .
## Tests
```yml tests: - text: Haz que el quotient variable sea igual a 2. testString: 'assert(quotient === 2, "Make the variable quotient equal to 2.");' - text: Usa el operador / testString: 'assert(/\d+\s*\/\s*\d+/.test(code), "Use the / operator");' ```
## Challenge Seed
```js var quotient = 66 / 0; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js var quotient = 66 / 33; ```