How to Store a Javascript Array in localStorage

The localStorage enables you to store data in the browser. The data stored is in the form of key/value pairs and it does not expire when you close the browser. It's also important to note that the localStorage only stores strings. That brings us to the theme…

Build A REST API With HarperDB and FastifyJS

This article will teach you how to use Node.js, Fastify and HarperDB to build a course management system. This application will help you track the courses you are doing and the courses you plan to do. You will use the following technologies: * Node.js * HarperDB * Fastify Introduction When it…

JavaScript ES2020 - The Features You Should Know

ES2020 or ECMAScript 2020 brings exciting features to JavaScript. In this article, I want to talk about my favourite features from ES2020. That means the article does not cover all the additions. Thus, let us see my favourite new additions: * Dynamic Import * Nullish Coalescing Operator * Optional Chaining Operator * Private Class…

5 Best Resources To Learn JavaScript As A Beginner

There are countless resources to learn JavaScript, and that is both a bad and a good thing. The good thing is that we have many options to choose from. However, the bad thing is that we do not know which resource is the best. Thus, the purpose of this article…