Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Last active August 29, 2015 14:14
Show Gist options
  • Save debugmodedotnet/c4a69041f371fb627524 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/c4a69041f371fb627524 to your computer and use it in GitHub Desktop.
Create JavaScript function
var add = function Add(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