美文网首页
Repeat a string repeat a string

Repeat a string repeat a string

作者: Marks | 来源:发表于2017-05-02 11:36 被阅读13次

    重复一个指定的字符串 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

          本文链接:https://www.haomeiwen.com/subject/zbsctxtx.html