Function Repeat
Repeats a value a specified number of times
Repeat([VALUE],[COUNT],[JOINER])Parameters
| # | Type | Passing | Default | Name | Description/Comments |
|---|---|---|---|---|---|
| 1 | any | required | n/a | VALUE | The value to repeat |
| 2 | number | required | n/a | COUNT | The number of times to repeat |
| 3 | string | optional | JOINER | The joiner to use to join the result |
Returns
The value repeated
Examples
Repeat the letter "A" 10 times
{{Repeat("A",10)}}
