If true, then the callback function takes an element descriptor instead of a value
Strategy to iterate object properties:
'own'
- the object iterates only own properties (by default)'inherited'
- the object iterates only inherited properties
(for-in with the negative hasOwnProperty
check)'all'
- the object iterates inherited properties too (for-in without the hasOwnProperty
check)If true, the function will iterate all object properties, but not only enumerable. Non-enumerable properties from a prototype are ignored.
ObjectForEachOptions.propsToIterate