array_sum()
Learn how to use the array_sum() function to calculate the sum of elements in a dynamic array.
Calculates the sum of elements in a dynamic array.
Syntax
array_sum
(array)
Parameters
Name | Type | Required | Description |
---|---|---|---|
array | dynamic | ✔️ | The array to sum. |
Returns
Returns a double type value with the sum of the elements of the array.
Example
This following example shows the sum of an array.
print arr=dynamic([1,2,3,4])
| extend arr_sum=array_sum(arr)
Output
arr | arr_sum |
---|---|
[1,2,3,4] | 10 |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.