Files

24 lines
335 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Divide One Decimal by Another with JavaScript
---
# Divide One Decimal by Another with JavaScript
---
## Hints
### Hint 1
JavaScript uses the `/` symbol for division.
2018-10-12 15:37:13 -04:00
---
## Solutions
<details><summary>Solution 1 (Click to Show/Hide)</summary>
```javascript
var quotient = 4.4 / 2.0; // Fix this line
```
</details>