* fix: rm assert msg basic-javascript * fix: removed more assert msg args * fix: fixed verbiage Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com>
73 lines
1.1 KiB
Markdown
73 lines
1.1 KiB
Markdown
---
|
|
id: cf1111c1c11feddfaeb3bdef
|
|
title: Add Two Numbers with JavaScript
|
|
challengeType: 1
|
|
videoUrl: 'https://scrimba.com/c/cM2KBAG'
|
|
---
|
|
|
|
## 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 an addition operator when placed between two numbers.
|
|
<strong>Example:</strong>
|
|
|
|
```js
|
|
myVar = 5 + 10; // assigned 15
|
|
```
|
|
|
|
</section>
|
|
|
|
## Instructions
|
|
<section id='instructions'>
|
|
Change the <code>0</code> so that sum will equal <code>20</code>.
|
|
</section>
|
|
|
|
## Tests
|
|
<section id='tests'>
|
|
|
|
```yml
|
|
tests:
|
|
- text: <code>sum</code> should equal <code>20</code>
|
|
testString: assert(sum === 20);
|
|
- text: Use the <code>+</code> operator
|
|
testString: assert(/\+/.test(code));
|
|
|
|
```
|
|
|
|
</section>
|
|
|
|
## Challenge Seed
|
|
<section id='challengeSeed'>
|
|
|
|
<div id='js-seed'>
|
|
|
|
```js
|
|
var sum = 10 + 0;
|
|
|
|
```
|
|
|
|
</div>
|
|
|
|
|
|
### After Test
|
|
<div id='js-teardown'>
|
|
|
|
```js
|
|
(function(z){return 'sum = '+z;})(sum);
|
|
```
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
## Solution
|
|
<section id='solution'>
|
|
|
|
|
|
```js
|
|
var sum = 10 + 10;
|
|
```
|
|
|
|
</section>
|