JoinAction

ArrayActions. JoinAction

An action 'join' that joins an array into a string and saves it in a variable, default separator: ","

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"
}