vote up 8 vote down star
2

var myArray = new Object(); myArray["firstname"] = "Bob"; myArray["lastname"] = "Smith"; myArray["age"] = 25;

Now if I wanted to remove "lastname"?....is there some equivalent of myArray["lastname"].remove()?

(I need the element gone because the number of elements is important and I want to keep things clean).

Thanks in advance to everyone! Andrew

flag

3 Answers

vote up 15 vote down check

Use the "delete" keyword in Javascript.

delete myArray["lastname"];
link|flag
vote up 1 vote down

awsome, thanks.

link|flag
Don't post comments as answers. Use the "add comment" button. – Simon Howard Dec 6 '08 at 17:32
He can't post comments --- he doesn't have enough points. – Eugene Lazutkin Dec 6 '08 at 18:36
vote up 1 vote down

All objects in JavaScript are implemented as hashtables/associative arrays. So, the following are the equivalent:

alert(myObj["SomeProperty"]);
alert(myObj.SomeProperty);

And, as already indicated, you "remove" a property from an object via the delete keyword, which you can use in two ways:

delete myObj["SomeProperty"];
delete myObj.SomeProperty;

Hope the extra info helps...

link|flag
Wow. That clears up a few misconceptions I had about js. Thx, Jason. – Mike Jun 26 at 0:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.