js string times

JavaScript
let string = 'Plumbus'
let count = 3

string.repeat(count); // -> 'PlumbusPlumbusPlumbus'
Source

Also in JavaScript: