Posted on: 1/10/2023 - 3 min read
How to implement ROT13 in JavaScript
ROT13 is a specific implementation of the Caesar cipher that replaces each letter with the letter that is 13 places down the alphabet. For e...read more
Posted on: 2/16/2021 - 3 min read
Implementing a Caesar Cipher in JavaScript
Cipher's are a great way to practice your logical coding skills. Plus, they're kind of fascinating. Ciphers have been used for hundreds, if ...read more
Posted on: 10/27/2019 - 3 min read
Bubble Sort algorithm in JavaScript
Sorting is a common task that is required of programmers many a time. You need to sort things such as search result sets to standard lists o...read more