Files
2018-10-16 21:32:40 +05:30

9 lines
266 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Divide One Number by Another with JavaScript
localeTitle: Разделите одно число другим с помощью JavaScript
---
В JavaScript используется символ `/` для деления.
```
var quotient = 66 / 33;
```