padRight
Pad a string on the right to the given length.
string(required): the string to padlength(required): target lengthchar(optional): pad character (default" ")
utlx
padRight("hello", 10, ".") // "hello....."