How does one delete an element from an associative array? For example, I have:
var a = new Object();
a['title'] = 'Mr.';
a["fname'] = 'Brad';
a['lname'] = 'Johnson';
I want to remove the 'title' entry (so that it doesn't exist, not merely give it a null value).