A api returns a JSON response at undefinable depth where some elements may or not be included. How do I check if a property is present? Some of the parameters include weird names like "@param" or "$". Example for this follows.

I wrote a check for something similar, but cannot use the dot syntax for above reasons. Help for modifiying this is highly appreciated.

function checkValue(objectPath) {
    var keys = Object.isArray(objectPath) ? objectPath : objectPath.split(".");
    if (keys[0] == "window") keys.shift();
    try {
    return keys.inject(window, function(obj, key) {return obj[key];});
    } catch (e) {
        return undefined;
    }
}

Example for the object to test on is:

var obj = {
member: {
    '@member-age': {
        value: 42
    }
}};

Before I checked it with checkValue(obj.member.age) but cannot do this for obvious reasons in this example.

link|improve this question
Are you looking for a property name, or a property value? – Pointy Jun 16 '11 at 13:54
for the property name, I need to check if it is present as otherwise the output will fail. – chris Jun 16 '11 at 13:57
did you want the value of that property? or just wether it exists? – Patricia Jun 16 '11 at 14:02
1  
Most of the solutions there will work perfectly fine for checkForProperty('obj.@member-age.value'). You have to pass a string in any case. – Felix Kling Jun 16 '11 at 14:09
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.