Propiedad documentElement del XML DOM

Definición y uso

documentElement La propiedad devuelve el nodo raíz del documento.

Sintaxis

documentObject.documentElement

Ejemplo

El siguiente código cargará "books.xml" en xmlDoc y mostrará la ubicación del documento XML:

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
   if (this.readyState == 4 && this.status == 200) {
       myFunction(this);
   }
};
xhttp.open("GET", "books.xml", true);
xhttp.send();
function myFunction(xml) {
    var xmlDoc = xml.responseXML;
    var x = xmlDoc.documentElement;
    document.getElementById("demo").innerHTML =
    "Nodename: " + x.nodeName + "<br>"
    "Nodevalue: " + x.nodeValue + "<br>"
    "Nodetype: " + x.nodeType;
}

Prueba personalmente