JS Repita de String num
"a".repeat(10)
Borma
"a".repeat(10)
Array(11).join("a") // create string with 10 a's: "aaaaaaaaaa"