Given a string and a number, concatenate the string to itself n times.
// input: const s = 'hello', n = 5 // output: 'hellohellohellohellohello'
/* output */