freeCodeCamp/guide/russian/javascript/tutorials/subtract-one-number-from-an.../index.md

11 lines
365 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: Subtract One Number from Another with JavaScript
localeTitle: Вычитайте один номер из другого с помощью JavaScript
---
Мы также можем вычесть одно число из другого.
В JavaScript используется символ - для вычитания.
```
var difference = 45 - 33;
```