I have a XML data in this format:
<data>
<item type='String'>ABC</item>
<item type='Date'>
<Year>2015</Year>
<Month>May</Month>
<Day>24</Day>
</item>
</data>
I am parsing in this format:
var obj = someVariable.record[0].column[0].getText(); //obj
How can I parse the date 2015/May/24
?