Contact: aviboots(AT)netvision.net.il
39,914 questions
51,847 answers
573 users
function createCopies(str: string, num: number) { return str.repeat(num); } let s: string = "wpo"; s = createCopies(s, 3); console.log(s); /* run: "wpowpowpo" */