Answers for "string repeat javascript"

2

js repeat

const chorus = 'Because I\'m happy. ';

console.log(`Chorus lyrics for "Happy": ${chorus.repeat(27)}`);

// expected output: "Chorus lyrics for "Happy": Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. Because I'm happy. "
Posted by: Guest on August-12-2021
5

JavaScript repeat character

var a="a";
var aaa=a.repeat(3); // "aaa"
Posted by: Guest on July-31-2019
5

string repeat javascript

// best implementation
repeatStr = (n, s) => s.repeat(n);
Posted by: Guest on August-17-2020
1

repeat a function javascript

setInterval(function(){
  console.log("Hello");
  console.log("World");
}, 2000); //repeat every 2s
Posted by: Guest on November-25-2020
2

how to return a string x amount in javascript without using . repeat

function repeatStringNumTimes(string, times) {
  var repeatedString = "";
  while (times > 0) {
    repeatedString += string;
    times--;
  }
  return repeatedString;
}
repeatStringNumTimes("abc", 3);
Posted by: Guest on June-10-2020
5

repeat js

repeatStr = (n, s) => s.repeat(n);
Posted by: Guest on June-19-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language