my JSON array is like this;
var foo = [{"aid":"1","atitle":"Ameya R. Kadam"},{"aid":"2","atitle":"Amritpal Singh"},{"aid":"3","atitle":"Anwar Syed"},{"aid":"4","atitle":"Aratrika"},{"aid":"5","atitle":"Bharti Nagpal"}]
if i select any element, for example,
alert(foo[0].atitle);
output: Ameya R. Kadam
the first element's atitle value shows up. i want to modify it so that the array starts from 1 instead of 0. like,
alert(foo[1].atitle);
output: Ameya R. Kadam
can it be done?