Summary
Converts the array to a string.
Description
Returns a string representing the specified array and its elements.
Route
No Northbound API Available
Roles
Parameters
DetailsExampleSchema
| Name |
Type |
Required |
Description |
| arr |
array |
yes |
The array to stringify |
Copied to Clipboard
{
"arr": [
"array",
"elements",
"in",
"a",
"string"
]
}
Copied to Clipboard
{
"type": "object",
"properties": {
"arr": {
"title": "arr",
"type": "array",
"items": [
{
"type": [
"string",
"number",
"integer",
"object",
"array",
"boolean",
"null"
]
}
],
"examples": [
[
"array",
"elements",
"in",
"a",
"string"
]
]
}
},
"required": [
"arr"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| arrayString |
string |
A string representation of the array |
Copied to Clipboard
"array,elements,in,a,string"
Copied to Clipboard
{
"title": "arrayString",
"type": "string",
"examples": [
"array,elements,in,a,string"
]
}