Files

7 lines
134 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Divide One Number by Another with JavaScript
---
JavaScript uses the `/` symbol for division.
2018-10-12 15:37:13 -04:00
var quotient = 66 / 33;