Solución
JL@juanluisabreu_4c541ef6
·4/4/2026TypeScriptsolution.tsTypeScript
function repeatString(text: string, times: number): string {
return times==0? "":text.repeat(times);
}
// No modificar: necesario para evaluar el resultado.
export { repeatString };0respuestas