How do I remove the key \'bar\' from an array foo so that \'bar\' won\'t show up in
for(key in foo){alert(key);}
If you know the key name simply do like this:
delete array['key_name']