Tagged Questions
0
votes
4answers
2k views
JavaScript check if anonymous object has a method
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 ...