Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

Returns sum of child elements on current node or specified xpath.

number myXml.Sum()

Returns sum of child elements on current node or specified xpath.

number myXml.Sum(xpath: string)

Arguments

string xpath
XPath to evaluate. If not specified current node childs are selected.

Example

Evaluate with an xpath

Code Block
languagejs
var totalAmount = $Xml.Sum('//Customer//Order/Total');