Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 20, 2023 16:59
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/2b74333afc842f96a926de78473f58f3 to your computer and use it in GitHub Desktop.
Save parzibyte/2b74333afc842f96a926de78473f58f3 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