Skip to content

Instantly share code, notes, and snippets.

@creyn

creyn/index.js Secret

Created August 25, 2018 14:31
Show Gist options
  • Save creyn/f7e226b3f2b99a0d3f97101101c2aa83 to your computer and use it in GitHub Desktop.
Save creyn/f7e226b3f2b99a0d3f97101101c2aa83 to your computer and use it in GitHub Desktop.
Droga Programisty : Kod : Funkcje w JavaScript
function Suma(liczbaA, liczbaB) {
return liczbaA + liczbaB;
}
console.log(Suma(1, 2));
console.log(Suma(213, 1231));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment