2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
id: cf1111c1c11feddfaeb3bdef
|
|
|
|
title: Add Two Numbers with JavaScript
|
|
|
|
challengeType: 1
|
|
|
|
---
|
|
|
|
|
|
|
|
## Description
|
|
|
|
<section id='description'>
|
|
|
|
<code>Number</code> is a data type in JavaScript which represents numeric data.
|
|
|
|
Now let's try to add two numbers using JavaScript.
|
|
|
|
JavaScript uses the <code>+</code> symbol as addition operation when placed between two numbers.
|
|
|
|
<strong>Example</strong>
|
|
|
|
<blockquote>myVar = 5 + 10; // assigned 15</blockquote>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Instructions
|
|
|
|
<section id='instructions'>
|
|
|
|
Change the <code>0</code> so that sum will equal <code>20</code>.
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Tests
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
```yml
|
|
|
|
- text: <code>sum</code> should equal <code>20</code>
|
2018-10-02 15:02:53 +01:00
|
|
|
testString: 'assert(sum === 20, ''<code>sum</code> should equal <code>20</code>'');'
|
2018-09-30 23:01:58 +01:00
|
|
|
- text: Use the <code>+</code> operator
|
2018-10-02 15:02:53 +01:00
|
|
|
testString: 'assert(/\+/.test(code), ''Use the <code>+</code> operator'');'
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Challenge Seed
|
|
|
|
<section id='challengeSeed'>
|
|
|
|
|
|
|
|
<div id='js-seed'>
|
|
|
|
|
|
|
|
```js
|
|
|
|
var sum = 10 + 0;
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
### After Test
|
|
|
|
<div id='js-teardown'>
|
|
|
|
|
|
|
|
```js
|
|
|
|
console.info('after the test');
|
|
|
|
```
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
<section id='solution'>
|
|
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
var sum = 10 + 10;
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|