How do I remove objects from a javascript associative array> - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T11:02:11Zhttp://stackoverflow.com/feeds/question/346021http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/346021/how-do-i-remove-objects-from-a-javascript-associative-array8How do I remove objects from a javascript associative array>Andrew2008-12-06T06:44:05Z2008-12-06T17:20:31Z
<p>var myArray = new Object();
myArray["firstname"] = "Bob";
myArray["lastname"] = "Smith";
myArray["age"] = 25;</p>
<p>Now if I wanted to remove "lastname"?....is there some equivalent of myArray["lastname"].remove()?</p>
<p>(I need the element gone because the number of elements is important and I want to keep things clean).</p>
<p>Thanks in advance to everyone!
Andrew</p>
http://stackoverflow.com/questions/346021/how-do-i-remove-objects-from-a-javascript-associative-array/346022#34602215Answer by Dennis Cheung for How do I remove objects from a javascript associative array>Dennis Cheung2008-12-06T06:46:34Z2008-12-06T06:46:34Z<p>Use the "delete" keyword in Javascript.</p>
<pre><code>delete myArray["lastname"];
</code></pre>
http://stackoverflow.com/questions/346021/how-do-i-remove-objects-from-a-javascript-associative-array/346053#3460531Answer by Jason Bunting for How do I remove objects from a javascript associative array>Jason Bunting2008-12-06T07:28:01Z2008-12-06T07:28:01Z<p>All objects in JavaScript are implemented as hashtables/associative arrays. So, the following are the equivalent:</p>
<pre><code>alert(myObj["SomeProperty"]);
alert(myObj.SomeProperty);
</code></pre>
<p>And, as already indicated, you "remove" a property from an object via the <code>delete</code> keyword, which you can use in two ways:</p>
<pre><code>delete myObj["SomeProperty"];
delete myObj.SomeProperty;
</code></pre>
<p>Hope the extra info helps...</p>
http://stackoverflow.com/questions/346021/how-do-i-remove-objects-from-a-javascript-associative-array/346504#3465041Answer by Andrew for How do I remove objects from a javascript associative array>Andrew2008-12-06T17:20:31Z2008-12-06T17:20:31Z<p>awsome, thanks.</p>