пытаюсь удалить массив по id из localstorage
if (void 0 !== id) {
var products = a.getProducts() || {};
var index = products.indexOf(id);
console.log(id);
if(index === -1) {
products.push(r[id]);
} else {
products.splice(index, 1);
}
ну получаю ошибку
Uncaught TypeError: products.indexOf is not a function
что делаю не так?