JSFiddle - React, Tailwind, and code Playground
JavaScript
//Write your function here
String.prototype.rp = function(n) {
return new Array(1 + (n || 0)).join(this);
}
//End of function
console.log("abc".rp(3)); // Expected Result: abcabcabc
//Write your function here
String.prototype.rp = function(n) {
return new Array(1 + (n || 0)).join(this);
}
//End of function
console.log("abc".rp(3)); // Expected Result: abcabcabc