repeat
Repeat a string n times.
string(required): the string to repeatn(required): number of repetitions
utlx
repeat("ab", 3) // "ababab"
repeat("-", 40) // "----------------------------------------"