add


add(n1, n2, ...)
      

Return the sum of the numbers n1, n2, .... The addition operator (+) is internally mapped to this function.

Examples:


add(12, 100, 34)
// 146
12 + 100 + 34
// 146
`+`(12, 100, 34)
// 146
      

Also see:

mult
sub
div
mod


Core Module Index | Contents