“Fonction de répétition JavaScript” Réponses codées

fonction de répétition personnalisée javascript

/* Build a custom repeat function: perform an action "n" times. */

repeat = (n, action) => {
  for (let i = 0; i < n; i++) {
    action(i);
  }
}

repeat(5, n => {
  console.log(2 * n);
});
// → 0 2 4 6 8
Intra

répéter la chaîne en javascript

let text = 'Hello world!';
let result = text.repeat(4);

console.log(result);
Mehedi Islam Ripon

Temps de chaîne JS

let string = 'Plumbus'
let count = 3

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

Caractère de répétition JavaScript

var a="a";
var aaa=a.repeat(3); // "aaa"
Grepper

chaîne répéter javascript

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

Fonction de répétition 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

Réponses similaires à “Fonction de répétition JavaScript”

Questions similaires à “Fonction de répétition JavaScript”

Plus de réponses similaires à “Fonction de répétition JavaScript” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code