add(n1, n2, ...)
Return the sum of the numbers n1, n2, .... The addition operator (+) is internally mapped to this function.
n1
n2
...
+
add(12, 100, 34) // 146 12 + 100 + 34 // 146 `+`(12, 100, 34) // 146
Core Module Index | Contents