2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
id: cf1111c1c11feddfaeb6bdef
|
|
|
|
title: Divide One Number by Another with JavaScript
|
|
|
|
challengeType: 1
|
|
|
|
---
|
|
|
|
|
|
|
|
## Description
|
|
|
|
<section id='description'>
|
|
|
|
We can also divide one number by another.
|
|
|
|
JavaScript uses the <code>/</code> symbol for division.
|
|
|
|
|
|
|
|
<strong>Example</strong>
|
|
|
|
<blockquote>myVar = 16 / 2; // assigned 8</blockquote>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Instructions
|
|
|
|
<section id='instructions'>
|
|
|
|
Change the <code>0</code> so that the <code>quotient</code> is equal to <code>2</code>.
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Tests
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
```yml
|
|
|
|
- text: Make the variable <code>quotient</code> equal to 2.
|
2018-10-02 15:02:53 +01:00
|
|
|
testString: 'assert(quotient === 2, ''Make the variable <code>quotient</code> equal to 2.'');'
|
2018-09-30 23:01:58 +01:00
|
|
|
- text: Use the <code>/</code> operator
|
2018-10-02 15:02:53 +01:00
|
|
|
testString: 'assert(/\d+\s*\/\s*\d+/.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 quotient = 66 / 0;
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
### After Test
|
|
|
|
<div id='js-teardown'>
|
|
|
|
|
|
|
|
```js
|
|
|
|
console.info('after the test');
|
|
|
|
```
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
<section id='solution'>
|
|
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
var quotient = 66 / 33;
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|