2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
id: cf1111c1c11feddfaeb4bdef
|
|
|
|
title: Subtract One Number from Another with JavaScript
|
|
|
|
challengeType: 1
|
|
|
|
---
|
|
|
|
|
|
|
|
## Description
|
|
|
|
<section id='description'>
|
|
|
|
We can also subtract one number from another.
|
|
|
|
JavaScript uses the <code>-</code> symbol for subtraction.
|
|
|
|
|
|
|
|
<strong>Example</strong>
|
|
|
|
<blockquote>myVar = 12 - 6; // assigned 6</blockquote>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Instructions
|
|
|
|
<section id='instructions'>
|
|
|
|
Change the <code>0</code> so the difference is <code>12</code>.
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Tests
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
```yml
|
2018-10-04 14:37:37 +01:00
|
|
|
tests:
|
|
|
|
- text: Make the variable <code>difference</code> equal 12.
|
2018-10-20 21:02:47 +03:00
|
|
|
testString: assert(difference === 12, 'Make the variable <code>difference</code> equal 12.');
|
2018-10-04 14:37:37 +01:00
|
|
|
- text: Only subtract one number from 45.
|
2018-10-20 21:02:47 +03:00
|
|
|
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.');
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Challenge Seed
|
|
|
|
<section id='challengeSeed'>
|
|
|
|
|
|
|
|
<div id='js-seed'>
|
|
|
|
|
|
|
|
```js
|
|
|
|
var difference = 45 - 0;
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
### After Test
|
|
|
|
<div id='js-teardown'>
|
|
|
|
|
|
|
|
```js
|
2018-10-20 21:02:47 +03:00
|
|
|
(function(z){return 'difference = '+z;})(difference);
|
2018-09-30 23:01:58 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
<section id='solution'>
|
|
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
var difference = 45 - 33;
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|