Ohm-Management - Projektarbeit B-ME
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.

add.js 469B

12345678910111213141516171819202122
  1. var createMathOperation = require('./_createMathOperation');
  2. /**
  3. * Adds two numbers.
  4. *
  5. * @static
  6. * @memberOf _
  7. * @since 3.4.0
  8. * @category Math
  9. * @param {number} augend The first number in an addition.
  10. * @param {number} addend The second number in an addition.
  11. * @returns {number} Returns the total.
  12. * @example
  13. *
  14. * _.add(6, 4);
  15. * // => 10
  16. */
  17. var add = createMathOperation(function(augend, addend) {
  18. return augend + addend;
  19. }, 0);
  20. module.exports = add;