如何解析XML AJAX响应

Image enter image description hereScenario

Im using ajax to post data to my backend and buy a domain, i'm getting a response but the response is in xml. I can simply access the child nodes by using: let Registered = data.object.CommandResponse.DomainCreateResult; but the DomainCreateResult node has attributes on it. if you look at the image above you'll see that to access them I need to access @attribute, but this throws an error because of the @ symbol.

I've read around the internet for what to do and it seems that everyone is parsing XML documents, but I don't think this is the same as parsing a document. I'm new to messing around with XML in PHP and Javascript.

How do i access the @attributes from this XML response? Thank you for all the help in advance.

Use the [] notation

let Registered = data.object.CommandResponse.DomainCreateResult['@attributes'].Domain;