Let's say we have a file (*.csv, *.txt ...) like :
Name, Surname, Age, Occupation
Gino, DiNanni, 19, student
Anna, Kournikova, 27, programmer
(I added those spaces just to make it readable here)
I'm trying to create a JSON (BTW it's valid) like:
[
{
"gino_dinanni": [
{
"age": "19",
"occupation": "student",
}
]
},
{
"anna_kournikova": [
{
"age": "27",
"occupation": "programmer",
}
]
}
]
accessible like e.g.
anna_kournikova.age // 27
So far I have this http://jsbin.com/apapey/2/edit but this is giving me (awfully):
[["Age:19","Occupation:student"],["Age:27","Occupation:programmer"]]
I know how to use .toLowerCase() to create anna_kournikova and stuff, but I'm really lost in creating the right JSON "object". I would paste some better examples I tried before, but I erased them all in a fit of rage, now going back from scratch and I need your advice. Might be I'm missing a simple detail? Thanks so much!

x[1].anna_kournikova[0].agewith your sample JSON – Thilo Jan 25 at 4:04[0]if we use already the accessible property.age? – Ginnani Jan 25 at 4:06forloops and than use some parse method or there's some simplest way to do it... – Ginnani Jan 25 at 4:12[0]is because you've enclosed the fields for e.g. "anna_kournikova" in brackets[]. It sounds like you don't want that, so just leave the brackets out for the fields beneath each person in your example data. You don't specify what the server is running, but unless it's Node.js, I suspect @rogchap is on to something with asking about the server-side component here. You mention hitting a URL and getting back this data. That looks a lot like a Rails URL. Is there more to the server-side story here? – Jim Stewart Jan 25 at 4:12