JavaScript Objects
Terminology
<object>.hasOwnProperty(<property-name>) ¶ Returns true if <object> has a property of the specified name, false if it does not. This method does not check the properties in the object's prototype chain; the property must be a member of the object itself.
Object.keys(<object>) ¶ Returns an array of the given object's own enumerable properties.
Facts, Thoughts and Opinions
Images
[[/div]]