Skip to content

Instantly share code, notes, and snippets.

@furf
Created July 25, 2014 20:54
Show Gist options
  • Save furf/9f64d0032895d25e2461 to your computer and use it in GitHub Desktop.
Save furf/9f64d0032895d25e2461 to your computer and use it in GitHub Desktop.
Wouldn't it be nice...
/**
* Adds two numbers.
* @param {Number} a First addend.
* @param {Number} b Second addend.
* @return {Number} The sum of the addends.
* @when a is 1 and b is 2
* @expect 3
*/
function addition(a, b) {
return a + b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment