我正在尝试转换集合中的属性。在这种情况下,我收到了一组航班。FLDATE 属性,即飞机起飞的日期,现在是一个date
属性。我想将其转换为string
属性。我不确定代码是否正确,因为我的 Javascript 知识有限。您如何看待以下功能?
function changeCollection (colIn)
{
var theList = new Collection();
for(var i = 0; i < colIn.length; i++)
{
var colItem = colIn[i];
colItem.FLDATE = colItem.FLDATE.toString();
theList[i] = colItem;
}
return theList;
}