Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created November 14, 2017 10:28
Show Gist options
  • Save debugmodedotnet/5cd4ef153fc442226e134c115ef3e73b to your computer and use it in GitHub Desktop.
Save debugmodedotnet/5cd4ef153fc442226e134c115ef3e73b to your computer and use it in GitHub Desktop.
var add = function a(num1, num2) {
return num1 + num2;
}
var res = add(7, 2);
console.log(res);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment