Copy as Markdown View as Markdown (opens in new tab) View on GitHub (opens in new tab) Open in... ChatGPT (opens in new tab) Claude (opens in new tab) Perplexity (opens in new tab) sum sum(values: Array<Number>): Number Returns the sum of numeric values in an array. Returns 0 if the array is empty and produces an error when non-numeric values are in the array. Parameters Name Description values The input array of numbers. Example This example returns the sum of the values in the input array. Source %dw 2.0 output application/json --- sum([1, 2, 3]) Output 6