码迷,mamicode.com
首页 > 其他好文 > 详细

Repeat a string repeat a string

时间:2016-11-24 18:04:18      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:span   var   code   string   class   blog   返回   nbsp   负数   

重复一个指定的字符串 num次,如果num是一个负数则返回一个空字符串。

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

repeat("abc", 3);

 

Repeat a string repeat a string

标签:span   var   code   string   class   blog   返回   nbsp   负数   

原文地址:http://www.cnblogs.com/fffangrui/p/6098558.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!