-
symbol for subtraction.
Example
```js
myVar = 12 - 6; // assigned 6
```
0
so the difference is 12
.
difference
equal 12.
testString: assert(difference === 12);
- text: Only subtract one number from 45.
testString: assert(/var\s*difference\s*=\s*45\s*-\s*[0-9]*;(?!\s*[a-zA-Z0-9]+)/.test(code));
```