Skip to main content

Object to String

Module Info:

moduleType: "internal",
moduleName: "objectToString"

Description

The objectToString function receives an object and returns the string equivalent of that object.

Inputs

NameTypeRequired
objectobject

Outputs

NameType
resultstring

Examples

Inputs Outputs
object keys
{ name: "John", age: 22 } '{ name: "John", age: 22 }'
{ city: "New York", state: "New York" } '{ city: "New York", state: "New York" }'