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

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