Я пытаюсь получить existCount из массива с идентификатором в выбранном массиве.
Но что-то пошло не так, у меня был элемент с id = 5493
, но existCount.length 0
Мой код JS:
var existCount = $scope.selectedScript.filter(function (item) {
return item.id === script.script_id;
});
console.log('existCount.length ', existCount.length);
console.log('$scope.selectedScript ', $scope.selectedScript);
console.log('script.script_id ', script.script_id);
Вид консоли Chrome:
https://i.stack.imgur.com/4UVWw.png
// Извините, я забыл первую строку вывода, но эта строка вверху $scope.selectedScript
и это было existCount.length = 0
Где моя вина?
Как я могу это исправить?
Спасибо!