Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 28, 2023 15:51
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/8beb4b4d0a8dc4dbda2fd1159a39c1e5 to your computer and use it in GitHub Desktop.
Save parzibyte/8beb4b4d0a8dc4dbda2fd1159a39c1e5 to your computer and use it in GitHub Desktop.
const separarCadenaEnArregloSiSuperaLongitud = (cadena, maximaLongitud) => {
const resultado = [];
let indice = 0;
while (indice < cadena.length) {
const pedazo = cadena.substring(indice, indice + maximaLongitud);
indice += maximaLongitud;
resultado.push(pedazo);
}
return resultado;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment