Contact Us 1-800-596-4880

nameSet

nameSet(obj: Object): Array<String>

Returns an array of keys from an object.

This function is Deprecated. Use dw::Core::namesOf, instead.

Parameters

Name Description

obj

The object to evaluate.

Example

This example returns the keys from the input object.

Source

%dw 2.0
import * from dw::core::Objects
output application/json
---
{ "nameSet" : nameSet({ "a" : true, "b" : 1}) }

Output

{ "nameSet" : ["a","b"] }