JSFiddle - React, Tailwind, and code Playground
JavaScript
var str = 'hello';
var result = str.repeat(3);
// prints "hellohellohello"
console.log(result);
result = str.repeat(0);
// prints ""
console.log(result);
var str = 'hello';
var result = str.repeat(3);
// prints "hellohellohello"
console.log(result);
result = str.repeat(0);
// prints ""
console.log(result);