Constructor
new JoinAction()
- Source:
Examples
{
"join": {
"property": "myProperty",
"separator": ","
}
}
{
"join": {
"variable": "myProperty",
"separator": ","
}
}
//Shorthand, joins the array in property "myArrayProperty" into a string
{
"join": "myArrayProperty"
}
//Shorthand, joins the array in variable "myArrayVariable" into a string
{
"join": "$myArrayVariable"
}