I possess:
var list = {};
list["A"] = "a";
list["B"] = "b";
list["C"] = "c";
What is the best way to completely eliminate the item list["A"]? I want to ensure that I do not end up with a null object, so simply using delete list["A"] might not be the solution.