freeCodeCamp/guide/russian/javascript/tutorials/divide-one-number-by-anothe.../index.md

9 lines
266 B
Markdown
Raw Normal View History

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