Answers for "js repeat from string num"

0

js repeat from string num

Array(11).join("a") // create string with 10 a's: "aaaaaaaaaa"
Posted by: Guest on February-15-2021
0

js repeat from string num

"a".repeat(10)
Posted by: Guest on February-15-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language