Adds two numbers together.
The number to which another number (the addend) is added.
The number that is added to the augend.
The sum of the augend and addend.
augend
addend
add(2, 3); // returns 5add(-1, 1); // returns 0 Copy
add(2, 3); // returns 5add(-1, 1); // returns 0
Adds two numbers together.