Posteriormente a investigar en diferentes repositorios y páginas webs al terminar hallamos la respuesta que te compartimos aquí.
Ejemplo: cifrado césar
functioncaesarCipher(str, shift)const alphabetArr ="abcdefghijklmnopqrstuvwxyz".split("");let res ="";for(let i =0; i < str.length; i++)const char = str[i];const idx = alphabetArr.indexOf(char);// if it is not a letter, don`t shift itif(idx ===-1)
res += char;continue;// only 26 letters in alphabet, if > 26 it wraps aroundconst encodedIdx =(idx + shift)%26;
res += alphabetArr[encodedIdx];return res;
Nos encantaría que puedieras dar visibilidad a esta sección si te fue útil.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)