ReadonlyANY_ReadonlyANY_ReadonlyBOOLEAN_ReadonlybooleanThe read-only booleanValue property of the XPathResult interface returns the boolean value of a result with XPathResult.resultType being BOOLEAN_TYPE.
ReadonlyFIRST_ReadonlyinvalidThe read-only invalidIteratorState property of the XPathResult interface signifies that the iterator has become invalid. It is true if XPathResult.resultType is UNORDERED_NODE_ITERATOR_TYPE or ORDERED_NODE_ITERATOR_TYPE and the document has been modified since this result was returned.
ReadonlyNUMBER_ReadonlynumberThe read-only numberValue property of the XPathResult interface returns the numeric value of a result with XPathResult.resultType being NUMBER_TYPE.
ReadonlyORDERED_ReadonlyORDERED_ReadonlyresultThe read-only resultType property of the XPathResult interface represents the type of the result, as defined by the type constants.
ReadonlysingleThe read-only singleNodeValue property of the XPathResult interface returns a Node value or null in case no node was matched of a result with XPathResult.resultType being ANY_UNORDERED_NODE_TYPE or FIRST_ORDERED_NODE_TYPE.
ReadonlysnapshotThe read-only snapshotLength property of the XPathResult interface represents the number of nodes in the result snapshot.
ReadonlySTRING_ReadonlystringThe read-only stringValue property of the XPathResult interface returns the string value of a result with XPathResult.resultType being STRING_TYPE.
ReadonlyUNORDERED_ReadonlyUNORDERED_The iterateNext() method of the XPathResult interface iterates over a node set result and returns the next node from it or null if there are no more nodes.
The snapshotItem() method of the XPathResult interface returns an item of the snapshot collection or null in case the index is not within the range of nodes. Unlike the iterator result, the snapshot does not become invalid, but may not correspond to the current document if it is mutated.
The
XPathResultinterface represents the results generated by evaluating an XPath expression within the context of a given node.MDN Reference