--- id: cf1111c1c11feddfaeb6bdef title: Divide One Number by Another with JavaScript challengeType: 1 videoUrl: '' localeTitle: Разделите одно число другим с помощью JavaScript --- ## Description
Мы также можем разделить одно число на другое. JavaScript использует символ / для деления.

пример

myVar = 16/2; // присвоено 8
## Instructions
Измените значение 0 так, чтобы quotient был равен 2 .
## Tests
```yml tests: - text: Сделайте переменное quotient равным 2. testString: 'assert(quotient === 2, "Make the variable quotient equal to 2.");' - text: Используйте оператор / 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 ```