vote up 16 vote down star
2

Say I create an object thus:

var myJSONObject =
        {"ircEvent": "PRIVMSG", "method": "newURI", "regex": "^http://.*"};

What is the best way to remove the property 'regex'? i.e. I would like to end up with myJSONObject such that:

myJSONObject ==
        {"ircEvent": "PRIVMSG", "method": "newURI"};

Thanks.

flag

36% accept rate

2 Answers

vote up 33 vote down check

like this:

delete myJSONObject.regex;
// or,
delete myJSONObject['regex'];
// or,
var prop = "regex";
delete myJSONObject[prop];
link|flag
Is it possible to use associative array syntax with delete? Say i have the name of the property as a string i.e. 'regex'. – johnstok Oct 16 '08 at 11:04
Checked, it also works with "delete myJSONObject['regex'];" See: developer.mozilla.org/en/… – johnstok Oct 16 '08 at 11:06
Irritatingly MS fail to mention that in their own JScript documentation on MSDN. – AnthonyWJones Oct 16 '08 at 12:41
vote up 1 vote down

var myJSONObject = {"ircEvent": "PRIVMSG", "method": "newURI", "regex": "^http://.*"};

delete myJSONObject.regex;

alert ( myJSONObject.regex);

works in FF and IE and I think all others

link|flag

Your Answer

Get an OpenID
or

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