TMTeboho Mosemeinteboho01.hashnode.dev·Aug 19, 2021 · 2 min read1 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...00
TMTeboho Mosemeinteboho01.hashnode.dev·Aug 13, 2021 · 2 min readWhat 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...00
TMTeboho Mosemeinteboho01.hashnode.dev·Aug 13, 2021 · 4 min readUnderstand 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 ...00