_.repeat
Lodash only
Repeats the given string n times.
- // Lodash
- var result = _.repeat('abc', 2)
- console.log(result)
- // output: 'abcabc'
- // Native
- var result = 'abc'.repeat(2)
- console.log(result)
- // output: 'abcabc'
Browser Support for String.prototype.repeat()
41.0 ✔ | ✔ | 24.0 ✔ | ✖ | 28.0 ✔ | 9.0 ✔ |
当前内容版权归 you-dont-need 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 you-dont-need .