I need to declare a set of types of objects in javascript and then populate them. Being new, I can't seem to find a way.
var ds {INT,STRING,STRING,STRING};
var myarr = []
I need to populate myarr with a set of ds objects dynamically populated. Can some one pls help?
Data format: ID,name,city,comments
This is what I am currently trying and failing:
var data=[];
var ds = { ID:0, Name:"", City:"",Comments:""};
for ( var i = 0; i < input.length; ++i ) {
ds.ID = input[i].ID;
ds.Name = input[i].Name;
ds.City = input[i].City;
ds.Comments = input[i].Comments;
data.push(ds);
}
dsobject dynamically in the loop. Currently the loop references always the same object (ds), i.e. every element in the array will refer to the same object. – Felix Kling Apr 27 '11 at 18:44