Sometimes, we want to create XML in JavaScript.
In this article, we’ll look at how to create XML in JavaScript.
How to create XML in JavaScript?
To create XML in JavaScript, we sue the DOMParser
constructor.
For instance, we write
const xmlString = "<root></root>";
const parser = new DOMParser();
const xmlDoc = parser.parseFromString(xmlString, "text/xml");
to create the parser
DOMParser
object.
Then we call parser.parseFromString
with xmlString
to convert it into an XML DOM object.
Conclusion
To create XML in JavaScript, we sue the DOMParser
constructor.