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
| Name | Type | Required |
|---|---|---|
object | object | ✔ |
Outputs
| Name | Type |
|---|---|
result | string |
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" }' |