Challenge 15
✒️
String Repeat
Create a function to take a string as a parameter and a number of times to repeat it
Examples:
strRepeat("abc", 3) would return "abcabcabc"
strRepeat("😂", 5) would return "😂😂😂😂😂"
Extension:
Add validation for both parameters