freeCodeCamp/curriculum/challenges/chinese/02-javascript-algorithms-and-data-structures/basic-javascript/subtract-one-number-from-another-with-javascript.chinese.md

60 lines
1.1 KiB
Markdown
Raw Normal View History

---
id: cf1111c1c11feddfaeb4bdef
title: Subtract One Number from Another with JavaScript
challengeType: 1
videoUrl: ''
localeTitle: 使用JavaScript从另一个数字中减去一个数字
---
## Description
<section id="description">我们也可以从另一个数字中减去一个数字。 JavaScript使用<code>-</code>符号进行减法。 <p> <strong></strong> </p><blockquote> myVar = 12 - 6; //分配6 </blockquote></section>
## Instructions
<section id="instructions">更改<code>0</code>因此差异为<code>12</code></section>
## Tests
<section id='tests'>
```yml
tests:
- text: 使变量<code>difference</code>等于12。
testString: assert(difference === 12);
- text: 只从45中减去一个数字。
testString: assert(/difference=45-33;?/.test(code.replace(/\s/g, '')));
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
var difference = 45 - 0;
```
</div>
### After Test
<div id='js-teardown'>
```js
console.info('after the test');
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>