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

пример

myVar = 12 - 6; // присвоено 6
## Instructions
Измените 0 так что разница составляет 12 .
## Tests
```yml tests: - text: Сделайте переменную difference равной 12. testString: 'assert(difference === 12, "Make the variable difference equal 12.");' - text: Вычитайте только одно число из 45. testString: 'assert(/var\s*difference\s*=\s*45\s*-\s*[0-9]*;(?!\s*[a-zA-Z0-9]+)/.test(code),"Only subtract one number from 45.");' ```
## Challenge Seed
```js var difference = 45 - 0; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```