12345678910// function repeat(str, times) { }function repeat(str, n) { let result = '' for(let i = 1; i < n; i++) {
2021-04-25