Repeat a string repeat a string | Free Code Camp

重复一个指定的字符串 num次,如果num是一个负数则返回一个空字符串。
repeat("", 3) 应该返回 "*".
repeat("abc", 3) 应该返回 "abcabcabc".
repeat("abc", 4) 应该返回 "abcabcabcabc".
repeat("abc", 1) 应该返回 "abc".
repeat("
", 8) 应该返回 "********".
repeat("abc", -2) 应该返回 "".

function repeatStringNumTimes(str, num) {
  // repeat after me
 var newStr = '';
  while(num > 0){
    newStr += str;
    num--;
  }
  return newStr;
}

repeatStringNumTimes("abc", 3);```

你可能感兴趣的:(Repeat a string repeat a string | Free Code Camp)