sum() takes in an unlimited number of parameters and finds the total value of them all as a number
sum() takes an unlimited number of parameters
log sum(10,10,5,3,5) // 33 log sum(2,5) // 7
Last updated 1 year ago