- Eric Stanley
- October 23, 2019
Higher order functions
I recently started learning JavaScript and I tumbled upon a concept called Higher Order Functions (HOF). There are quite a lot of documents in the internet that explains what an HOF is, and here is m...
- Eric Stanley
- October 12, 2019
Binary Search
Before we get into the syntax and logic of binary search algorithm, let’s ask ourselves this questi...
- Eric Stanley
- September 13, 2019
Game Show Host Problem
The game show host problem which is also called as ‘Monty Hall Problem’ is one of the classic math ...
- Eric Stanley
- August 21, 2019
Ternary Operators
The ternary operator is basically another way to implement the ```if-else``` statement. Now, if it’...