У меня есть ассоциированный массив JS, и я хочу удалить из него один элемент.
Мое решение работает, но оно не очень приятно, есть ли лучшее решение?
// i got this assoc array
var cm = [];
cm["a"] = ["a"];
cm["b"] = ["c"];
cm["s"] = ["a", "b", "c"];
cm["x"] = [];
console.log(cm);
var searchKey = "s";
var p = ["a","c","d", "b"]; // to remove from searchKey array
// remove elements (works fine)
cm[searchKey] = cm[searchKey].filter(value => (p.includes(value) === false));
console.log(cm); // now cm[searchKey] is an empty array
// if the array at index 'searchKey' is empty remove it from assoc array
var newarray = [];
if (cm[searchKey].length===0)
{
for(key in cm)
{
if (key!=searchKey) newarray[key] = cm[key];
}
}
cm = newarray;
console.log(cm);
Я пытался использовать фильтр и сплайс, но оба они работают только для массивов, а не для связанного массива.