Update repeatString.md
This commit is contained in:
@ -1,17 +1,14 @@
|
|||||||
### toKebabCase
|
### repeatString
|
||||||
|
|
||||||
Repeats a string n times using String.repeat()
|
Repeats a string n times using `String.repeat()`
|
||||||
|
|
||||||
If no string is provided the default is `""` and the default number of times is 1
|
If no string is provided the default is `""` and the default number of times is 2.
|
||||||
|
|
||||||
```js
|
```js
|
||||||
const repeatString = (str="",num=1) => {
|
const repeatString = (str="",num=2) => {
|
||||||
return num >= 0 ? str.repeat(num) : str;
|
return num >= 0 ? str.repeat(num) : str;
|
||||||
}
|
}
|
||||||
// toRepeatString("abc",3) -> 'abcabcabc'
|
// repeatString("abc",3) -> 'abcabcabc'
|
||||||
// toRepeatString("abc",0) -> ''
|
// repeatString("abc",0) -> ''
|
||||||
// toRepeatString("abc") -> 'abc'
|
// repeatString("abc") -> 'abcabc'
|
||||||
// toRepeatString("abc",-1) -> 'abc'
|
|
||||||
// toRepeatString() -> ''
|
|
||||||
// toRepeatString(undefined,3) -> ''
|
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user