JavaScript

August 2, 2020

Three ways of removing duplicates from an array using JavaScript

Sometimes you can receive data from a different number of sources for example an API, and it can contain some repeated data and you just want it cleaned up for whatever reason (in some cases...

Read

July 22, 2020

Alternative way of determining type in JavaScript

For many of us, when we first learned JavaScript, the first obvious way we came across for determining type was of course by using the typeof operator, which works fine for most basic use cases....

Read