Assuming I declare
var ad = {};
How can I check whether this object will contain any user-defined properties?
|
Assuming I declare
How can I check whether this object will contain any user-defined properties?
| ||||
|
feedback
|
|
You can loop over the properties of your object as follows:
It is important to use the | |||||
feedback
|
|
What about making a simple function?
The
Note: (for the future) The above method relies on the However this has changed now with ECMAScript 5th Edition, and we are able to create non-enumerable, non-writable or non-deletable properties, so the above method can fail, e.g.:
An ECMAScript 5 solution to this problem would be:
The
| |||||||||||||
feedback
|
Member means Member property, member variable, whatever you want to call it >_> The above code will return EVERYTHING, including toString... If you only want to see if the object's prototype has been extended:
Note A: We check to see if the dummy object's member has the same type as our testing object's member. If it is an extend, dummyobject's member type should be "undefined" | |||||||||||||
feedback
|
If you have to be safe and check for Object prototypes (these are added by certain libraries and not there by default):
| |||||||
feedback
|
|
When sure that the object is a user-defined one, the easiest way to determine if UDO is empty, would be the following code:
Even though this method is (by nature) a deductive one, - it's the quickest, and fastest possible.
p.s.: !don't use it on browser-defined objects. | ||||
|
feedback
|