How can I check if an anonymous object that was created as such:

var myObj = { 
              prop1: 'no',
              prop2: function () { return false; }
            }

does indeed have a prop2 defined?

prop2 will always be defined as a function, but for some objects it is not required and will not be defined.

I tried what was suggested here: http://stackoverflow.com/questions/595766/how-to-determine-if-native-javascript-object-has-a-property-method but I don't think it works for anonymous objects .

link|improve this question

2  
There's not much difference between anonymous and non-anonymous objects in JavaScript. They are the same under the cover. – vava Jun 9 '10 at 15:50
feedback

4 Answers

up vote 10 down vote accepted

typeof myObj.prop2 === 'function'; will let you know if the function is defined.

if(typeof myObj.prop2 === 'function') {
    alert("It's a function");
} else if (typeof myObj.prop2 === 'undefined') {
    alert("It's undefined");
} else {
    alert("It's neither undefined nor a function. It's a " + typeof myObj.prop2);
}
link|improve this answer
feedback

One way to do it must be if (typeof myObj.prop1 != "undefined") {...}

link|improve this answer
feedback

What do you mean by an "anonymous object?" myObj is not anonymous since you've assigned an object literal to a variable. You can just test this:

if (typeof myObj.prop2 === 'function')
{
    // do whatever
}
link|improve this answer
feedback

You want hasOwnProperty():

var myObj1 = { 
    prop1: 'no',
    prop2: function () { return false; }
}
var myObj2 = { 
    prop1: 'no'
}

alert(myObj1.hasOwnProperty('prop2')); // returns true
alert(myObj2.hasOwnProperty('prop2')); // returns false

References: Mozilla, Microsoft, phrogz.net.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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