“Repita una función JavaScript” Código de respuesta

String Repet JavaScript

// best implementation
repeatStr = (n, s) => s.repeat(n);
Fylls

JS repite

setInterval(function(){

}, 1000);
Code Cat

Repita una función JavaScript

setInterval(function(){
  console.log("Hello");
  console.log("World");
}, 2000); //repeat every 2s
TalalDEV

JS repite

function repeatStr (n, s) {
  return s.repeat(n)
}
/////////////////////////////similar///////////////////////////////////////////
repeatStr = (n, s) => s.repeat(n);
Gendzi

Función de repetición de JavaScript

/* The string.repeat(n) method constructs and returns a new string
with "n" number of copies. */

const chorus = "Because I'm happy. ";
console.log(`Chorus lyrics: ${chorus.repeat(3)}`);
// → "Chorus lyrics: Because I'm happy. Because I'm happy. Because I'm happy. "

// Use within a function
greeting = (n, words) => words.repeat(n);
console.log(greeting(5, "howdy ")); 
// → "howdy howdy howdy howdy howdy "
Intra

Respuestas similares a “Repita una función JavaScript”

Preguntas similares a “Repita una función JavaScript”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código