Skip to content

Instantly share code, notes, and snippets.

@Dosant
Created February 26, 2017 06:28
Show Gist options
  • Save Dosant/652b5e7e1c6494e680744a3ff5a3f3d0 to your computer and use it in GitHub Desktop.
Save Dosant/652b5e7e1c6494e680744a3ff5a3f3d0 to your computer and use it in GitHub Desktop.
// 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