King Elisha

King Elisha @elishaking

Location:
Abuja, Nigeira
Joined:
Nov 19, 2019

King Elisha
articles - 13 total

Correct way to handle API requests in a useEffect hook

It is common to issue an asynchronous request to an API in a useEffect hook. Perhaps to fetch some...

Learn More 5 2Sep 15 '22

How to implement Facebook Login with NestJS

NestJS is a relatively new framework that has been growing in popularity for many good reasons. It ha...

Learn More 58 17Aug 20 '20

JS Titbits | Sync vs Async

In Javascript, all synchronous code in a given script is executed before any asynchronous code. For...

Learn More 1 0Jul 7 '20

Binary Tree (Recursive) traversal methods

There are three ways to traverse or visit all the nodes in a tree. They are: In-order Trave...

Learn More 1 0Jun 19 '20

Sieve of Eratosthenes: Find Prime numbers in a given range

What is it? The Sieve of Eratosthenes is a simple algorithm for finding all the prime numb...

Learn More 1 0Jun 14 '20

Migrate React App To TypeScript

For react projects created with create-react-app, it is very easy to migrate to Typescript. This will...

Learn More 6 3Jun 10 '20

Sorting Algorithms

As more data gets handled by computers, sorting is one of the biggest problems to solve efficiently....

Learn More 6 0May 24 '20

Euclidean algorithm

Euclidean algorithm The Euclidean algorithm is one of the oldest numerical algorithms comm...

Learn More 2 0Apr 7 '20

Queues and Doubly Linked Lists

What is a Linked List A linked list is a data structure that stores a collection of nodes....

Learn More 10 0Mar 18 '20

Stacks and Queues

Stacks and Queues are two basic data structures that have many practical applications in software dev...

Learn More 6 3Feb 28 '20

GitFlow Workflow in a Nutshell

What is it? The Gitflow workflow is a strict branching model that provides a robust framew...

Learn More 9 0Feb 18 '20

Array Operations and Methods in JavaScript

Arrays are indispensable data-structures in javascript and understanding how to effectively use them...

Learn More 5 0Feb 17 '20

Run multiple tasks Concurrently (in parallel) using JavaScript

When you have multiple time-consuming tasks/functions to execute, there are two main solutions to opt...

Learn More 24 0Feb 14 '20