“Como repetir a string em javascript” Respostas de código

Como repetir a string em javascript

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

console.log(result);
Mehedi Islam Ripon

JavaScript Repele Personagem

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

String Repita JavaScript

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

Repita uma função JavaScript

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

Repita uma string Repita um string-javascript

function repeatStringNumTimes(str, num) {
  if (num < 1) {
    return "";
  } else {
    return str + repeatStringNumTimes(str, num - 1);
  }
}
Angry Alpaca

JavaScript Replant Função

/* 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

Respostas semelhantes a “Como repetir a string em javascript”

Perguntas semelhantes a “Como repetir a string em javascript”

Mais respostas relacionadas para “Como repetir a string em javascript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código