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

9 lines
266 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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