Z Object Functions
Jump to navigation
Jump to search
Z Object Related Functions
KEYS
KEYS(SomeObject,SomeFunction,ExtractAll,IncludeFunctions)
Extracts the keys of an object. Similar to Object.keys.
SomeFunction is applied, if provided to each of the values. ExtractAll indicates to include undefined values for keys. IncludeFunctions include values for keys that are functions in the extracts.
KEYTAGS
KEYTAGS(SomeObject,SomeFunction,ExtractAll,IncludeFunctions)
Same as KEYVALUES.
Extracts the key value pair of an object. Similar to Object.entries.
Other parameters similar to KEYS.
TAGS
TAGS(SomeObject,SomeFunction,ExtractAll,IncludeFunctions)
Extracts the values of an object. Similar to Object.entries with values alone.
Other parameters similar to KEYS.