如果项目存在于数组中,如何拼接项目?

时间:2013-07-11 09:35:23

标签: javascript

我有一个这样的行代码

$scope.selectItem.push(item['id']);

现在我想检查$ scope.selectItem中是否存在 item ['id'] 来拼接它。

任何想法

1 个答案:

答案 0 :(得分:1)

另一种可能的解决方案:

if ($scope.selectItem.indexOf(item['id']) !== -1) // it exists