_.subtract(minuend, subtrahend)
Subtract two numbers.
Since
4.0.0
Arguments
-
minuend
(number): The first number in a subtraction. -
subtrahend
(number): The second number in a subtraction.
Returns
(number): Returns the difference.
Example
_.subtract(6, 4); // => 2
Please login to continue.