mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
590 B
30 lines
590 B
9 years ago
|
/**
|
||
|
* Adds two numbers.
|
||
|
*
|
||
|
* @static
|
||
|
* @memberOf _
|
||
|
* @category Math
|
||
|
* @param {number} augend The first number in an addition.
|
||
|
* @param {number} addend The second number in an addition.
|
||
|
* @returns {number} Returns the total.
|
||
|
* @example
|
||
|
*
|
||
|
* _.add(6, 4);
|
||
|
* // => 10
|
||
|
*/
|
||
|
function add(augend, addend) {
|
||
|
var result;
|
||
|
if (augend === undefined && addend === undefined) {
|
||
|
return 0;
|
||
|
}
|
||
|
if (augend !== undefined) {
|
||
|
result = augend;
|
||
|
}
|
||
|
if (addend !== undefined) {
|
||
|
result = result === undefined ? addend : (result + addend);
|
||
|
}
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
module.exports = add;
|