10 followers
Full Stack Developer living in Toronto
Objects are a big part of JavaScript. Therefore, having a good understanding of objects and how to work with them is crucial. In this article, I would...
Context API allows us to manage the state easily in React App. What do I mean by that? Before I explain how to work with React Context API, I want to...
express.js allows us to create a server with only a few lines of code. Install Express.js $ npm i express import express call the top-level...
Before 'const' and 'let' introduced, 'var' had been used for declaring variables. It caused a lot of issues. We understand we should not use the 'var'...
JSON(JavaScript Object Notation) is very useful when you work with data. The first thing we should know is how to convert an object to JSON and a JSON...
How can I get an indefinite number of arguments as an array in a function? First, I will try this way. const printAll = (args) => { ...