How do I remove objects from a javascript associative array> - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T11:02:11Z http://stackoverflow.com/feeds/question/346021 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/346021/how-do-i-remove-objects-from-a-javascript-associative-array 8 How do I remove objects from a javascript associative array> Andrew 2008-12-06T06:44:05Z 2008-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#346022 15 Answer by Dennis Cheung for How do I remove objects from a javascript associative array> Dennis Cheung 2008-12-06T06:46:34Z 2008-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#346053 1 Answer by Jason Bunting for How do I remove objects from a javascript associative array> Jason Bunting 2008-12-06T07:28:01Z 2008-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#346504 1 Answer by Andrew for How do I remove objects from a javascript associative array> Andrew 2008-12-06T17:20:31Z 2008-12-06T17:20:31Z <p>awsome, thanks.</p>