我正在尝试检查数组中的项目。 这是我的代码
var fruits=['banana','orange','lemon'];
fruits.splice(0,1,'apple');
for (i=0;i<=fruit.length;i++)
{
alert('The fruits are' + fruits[i]);
};
不知怎的,它没有工作。 请告诉我我在哪里做错了。 感谢。
答案 0 :(得分:0)
syntax;-
array.splice(index,howmany,item1,.....,itemX)
index->positon from/to u want to ad and remove items
howmany->how many item u want add/remove
item->item list(for more than pne seprate it by comma)
也: - 请在for循环中添加s之后的s
答案 1 :(得分:0)
您是否错误地添加了fruit.length
或者您编写了这样的代码?