I have currently a problem in deleting entries from an associative array.
I tried this:
myArray['key'] = value;
myArray['key1'] = value1;
...
delete myArray['key'];
But I get following results in my application (over firebug):
[ undefined, { key1: 'value1', key2: 'value2' }, undefined,
{ key1: 'value1', key2: 'value2' }, undefined, undefined ]
How can I delete the whole entry, key and value? I found the method splice() but I think it use a diffrent index. I wasn't able to delete the right entries by passing the key to splice().
Here is the code where I have trouble:
var widgets = {
displayedWidgets: [
],
clear: function() {
widgets.displayedWidgets = [];
},
add: function(widget) {
//error while replacing the old value
widgets.displayedWidgets[widget.id] = widget;
},
addArray: function(newWidgets) {
newWidgets.each(function(widget) {
widgets.add(widget);
});
},
remove: function(widgetId) {
var widget = widgets.displayedWidgets[widgetId];
if (widget != undefined) {
//the key still exists with the value undefined
delete widgets.displayedWidgets[widgetId];
}
}
};