@Shuffle()
New in 2.0Randomly shuffle input items
ArraySince 2.0.0
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| items | — | — | Pipe-separated list of items to shuffle, e.g. a|b|c |
Usage
@Shuffle(arg0)Shuffle the given items
Example:
@Shuffle(a|b|c|d)
Output:
["c","a","d","b"]