What is the best or most concise method for returning a string repeated an arbitrary amount of times?
The following is my best shot so far:
function
Use Array(N+1).join("string_to_repeat")
Array(N+1).join("string_to_repeat")