Add function to take user input string and perform ROT 13 Caeser ciper. Has
only been tested with lowercase strings with no other non-alphabet characters.
Fantastic! Great use of charCodeAt(). That really helps to keep your code succinct. Looks like rot25() is a little buggy when capital letters are introduced, but otherwise, really great work.
Add function to take user input string and perform ROT 13 Caeser ciper. Has only been tested with lowercase strings with no other non-alphabet characters.