I have an object of items used as a dictionary with key/value pairs:
var stuff = {};
stuff["jar"] = "biscuit";
I'm trying to remove an item. So far, no array method seems to work. Is this even an array (as you probably guessed, I'm not too crash hot on Javascript).
How do I remove an item?