Files
freeCodeCamp/guide/russian/javascript/tutorials/add-two-numbers-with-javascript/index.md
2018-10-16 21:32:40 +05:30

9 lines
352 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: Add Two Numbers with JavaScript
localeTitle: Добавить два номера с JavaScript
---
JavaScript использует символ `+` для добавления. Его также можно использовать вместо `parseInt()` но это выходит за рамки этого.
```
var sum = 10 + 10;
```