Difference between revisions of "ArraySum"
(jrfconvert import) |
|||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
− | [[Category: | + | [[Category:Collection_Functions]] |
− | | + | {{HelpFiles}} |
====arraySum==== | ====arraySum==== | ||
Line 19: | Line 19: | ||
'''Examples''' | '''Examples''' | ||
− | |||
− | |||
''array a = {1, 3, 1};'' | ''array a = {1, 3, 1};'' | ||
Line 26: | Line 24: | ||
''number c = arraySum(a);'' | ''number c = arraySum(a);'' | ||
− | ''print(c); | + | ''print(c); //5'' |
− | |||
− | |||
'''Availability''' | '''Availability''' |
Latest revision as of 04:44, 20 December 2011
arraySum
Gets the sum of all the objects in an array if all the objects are of number type.
Syntax
arraySum(array)
Arguments
array: Is an array.
Return type
number
Examples
array a = {1, 3, 1};
number c = arraySum(a);
print(c); //5
Availability
Version 4.8