Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created January 27, 2015 07:13
Show Gist options
  • Save debugmodedotnet/9918148665f2e79f724e to your computer and use it in GitHub Desktop.
Save debugmodedotnet/9918148665f2e79f724e to your computer and use it in GitHub Desktop.
var add = function Add(num1, num2)
{
var result = num1 + num2;
return result;
};
var s = add(34, 67);
console.log(s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment