--- id: cf1111c1c11feddfaeb6bdef title: Divide One Number by Another with JavaScript challengeType: 1 videoUrl: '' localeTitle: Divide um número por outro com JavaScript --- ## Description
Nós também podemos dividir um número por outro. JavaScript usa o símbolo / para divisão.

Exemplo

myVar = 16/2; // atribuído 8
## Instructions
Altere 0 para que o quotient seja igual a 2 .
## Tests
```yml tests: - text: Faça o quotient variável igual a 2. testString: 'assert(quotient === 2, "Make the variable quotient equal to 2.");' - text: Use o 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 // solution required ```