--- 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); - text: 只从45中减去一个数字。 testString: assert(/difference=45-33;?/.test(code.replace(/\s/g, ''))); ```
## Challenge Seed
```js var difference = 45 - 0; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```