Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 317 Bytes

add.md

File metadata and controls

12 lines (9 loc) · 317 Bytes

cmd.add

name return value description
add [100, ...] Returns the sum of all arguments added to each given value.

The following example adds 10 to each value:

cmd.add(10).with(1, 2, 3, 4, 5);
// [11, 12, 13, 14, 15]