Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 232 Bytes

File metadata and controls

9 lines (6 loc) · 232 Bytes

Screen Shot 2022-04-13 at 15 29 37

function repeatStr (n, s) {
  return s.repeat(n);
}