It really depends on what you're trying to do with those values. With JSON, you can nest arrays of objects (each with their own sets of name/value pairs) in a concise format. Obviously with XML, you can deeply nest objects, and each object can have a number of attributes (which end up being name/value pairs).
So it comes down to a matter of style.
Do you like:
[{Name="John", Last="Smith", Salary="100"},{Name="Mary",Last="Smith",Salary="200}]
or
<People>
<Person name="John" last="Smith" salary="100" />
<Person name="Mary" last="Smith" salary="200" />
</People>
or
[Person1]
Name=John
Last=Smith
Salary=100
[Person2]
Name=Mary
Last=Smith
Salary=200
I think if you need to do searching and filtering, XML is probably the format for you. If you're using your data within JavaScript or sending it to and from different services, JSON is probably the preferred format. And if it's just data that you need to work with internally, an INI file format is perfectly fine.
Probably not what you want to hear, but, in my opinion, it really depends.