ga-wdi-boston / cipher-challenge

Other
0 stars 70 forks source link

Implement ROT 13 cipher. #27

Closed cuprous closed 8 years ago

cuprous commented 8 years ago

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.

laurenfazah commented 8 years ago

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.