Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 5, 2019 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/27af08318cab15757cc4642821edef45 to your computer and use it in GitHub Desktop.
Save parzibyte/27af08318cab15757cc4642821edef45 to your computer and use it in GitHub Desktop.
let cadena = "NA "; // con espacio al final
let cadenaRepetida = cadena.repeat(20); // repetir 20 veces
let cancion = cadenaRepetida + "Batman!";
console.log(cancion);
// Salida: NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Batman!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment