拼接方法给出了未知的结果

时间:2014-11-07 06:08:58

标签: javascript

我正在尝试检查数组中的项目。 这是我的代码

var fruits=['banana','orange','lemon'];
fruits.splice(0,1,'apple');
for (i=0;i<=fruit.length;i++)
{
alert('The fruits are' + fruits[i]);
};

不知怎的,它没有工作。 请告诉我我在哪里做错了。 感谢。

2 个答案:

答案 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或者您编写了这样的代码?