Skip to content

Instantly share code, notes, and snippets.

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