odin-default-js-exercises/02_repeatString/repeatString.js

15 lines
218 B
JavaScript

const repeatString = function(str,n) {
if(n<0)
return "ERROR"
let s="";
while(n)
{
s+=str;
n--;
}
return s;
};
// Do not edit below this line
module.exports = repeatString;