Returns a string that is made from itself appended together the given number of times. If count is 0, the empty string is returned.
repeat(count)
count
The number of copies to append.
The repeated string.
"na".repeat(3)
"nanana"
"na".repeat(0)
""