Created
July 25, 2014 20:54
-
-
Save furf/9f64d0032895d25e2461 to your computer and use it in GitHub Desktop.
Wouldn't it be nice...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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