Created
February 26, 2017 06:28
-
-
Save Dosant/652b5e7e1c6494e680744a3ff5a3f3d0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// function имя(список параметров) { тело } | |
function sum(a, b) { | |
var result = a + b; | |
return result; | |
} | |
// использование: | |
sum(1, 2) // 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment