add
numeric →
add(
value: numeric,
times?: integer
) → numeric
Returns the sum of the input value and the parameter value.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
value | numeric | Yes | The value to add to the input value. |
times | integer | No | Number of times the addition is applied. |
Examples
10 | add(5) → 15
10 | add(5, 2) → 20
Kind: Function
Scope: numeric/arithmetic
Aliases: numeric-to-add