I have an XML file which contains employees' data.
<Employee>
<ID>01</ID>
<FirstName>Steven</FirstName>
<LastName>Smith</LastName>
<Phone>123456789</Phone>
</Employee>
I want to display this data in a web page using AngularJS.
From Google search I found I need to prepare a JavaScript function to read data from XML, create this JS function as ng-app, and then call this app in HTML web page to display data.
I don't know how to do this.