Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save debugmodedotnet/32273053963b4e104424 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/32273053963b4e104424 to your computer and use it in GitHub Desktop.
var s = sub(34, 67);
console.log(s);
var sub = function (num1, num2)
{
var result = num1 - num2;
return result;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment