Repeat a string repeat a string

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Repeat a string repeat a string相关的知识,希望对你有一定的参考价值。

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

function repeat(str, num) {
  // repeat after me
  if ( num < 0) {
    return "";
  }else {
    return str.repeat(num);
  }
}
repeat("abc", 3);

主要是repeat()的用法,这是ES6的方法。

以上是关于Repeat a string repeat a string的主要内容,如果未能解决你的问题,请参考以下文章

Repeat a string repeat a string

Repeat a string repeat a string

freeCodeCamp:Repeat a string repeat a string

Python Numpy 数组扩展 repeat和tile

php str_repeat()函数 语法

PHP之string之str_repeat()函数使用