teboho01.hashnode.dev1 Line Caesar CipherIn cryptography, a Caesar cipher, also known as Caesar's cipher, the shift cipher, Caesar's code or Caesar shift, is one of the simplest and most widely known encryption techniques. It is a type of substitution cipher in which each letter in the plai...Aug 19, 2021·2 min read
teboho01.hashnode.devWhat exactly is this in JavaScript?What is this and what context is it used? To understand this segment, we will have to head to an IDE. For simplicity, I will be using the Eloquent JavaScript IDE on this link. When the command console.log(this) gives access to the Window object. Th...Aug 13, 2021·2 min read
teboho01.hashnode.devUnderstand Recursive FunctionsWhat is Recursion: - An act of a function calling itself. For example, below is the pseudo-code to show how recursion works. The function called recursion is being executed twice, first in the global scope, then secondly, within itself. The function ...Aug 13, 2021·4 min read