var string;
var repeat;
var stringRepeater = function (string, repeat) {
var repeatedString = "";
while (repeat > 0){
repeatedString+=string;
repeat--
}
return repeatedString
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (1)