Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save debugmodedotnet/0a0087ac80e78ed02716 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/0a0087ac80e78ed02716 to your computer and use it in GitHub Desktop.
function Add(num1, num2)
{
return num1 + num2;
}
var result = Add(1, 2);
console.log(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment