sum(num1,..)
Description
sum() takes in an unlimited number of parameters and finds the total value of them all as a number
Parameters
sum() takes an unlimited number of parameters
Usage
log sum(10,10,5,3,5)
// 33
log sum(2,5)
// 7
Last updated
Was this helpful?