Add the solution (#28899)

* Add the solution

* Update divide-one-decimal-by-another-with-javascript.english.md

The solution was not passing. Change should pass now.

* Update divide-one-decimal-by-another-with-javascript.english.md


Co-authored-by: Paul Gamble <pgamble@gmail.com>
pull/34959/head
Casey Bennington 2019-01-25 16:10:44 +00:00 committed by Paul Gamble
parent d2286fc3b5
commit 7f9cbe982b
1 changed files with 1 additions and 3 deletions

View File

@ -37,8 +37,6 @@ tests:
```js
var quotient = 0.0 / 2.0; // Fix this line
```
</div>
@ -59,6 +57,6 @@ var quotient = 0.0 / 2.0; // Fix this line
<section id='solution'>
```js
// solution required
var quotient = 4.4 / 2.0;
```
</section>