ROT13 Cipher JavaScript Solution
How to create a ROT13 Caesar Cipher in JavaScript. The JavaScript solution for creating a ROT13 cipher with an explanation of what a ROT13 Caesar Cipher is and a couple of the JavaScript solutions that create the cipher. Day 3 of 365 Days
Day 3 Challenge
Day 3 Challenge of 365 Days of Coding: Today we are going to dive into simple ciphers with a Caesar cipher more specifically ROT13. Create a function that takes a string and returns the string with each letter substituted with the 13th letter after it in the alphabet (ROT13). If there are numbers or special characters included in the string, they should be returned as they are.