- ๐ฑ Iโm currently learning Web Development
- ๐ฏ Iโm looking to collaborate on the same
- ๐ I write articles on Hashnode
- ๐ซ How to reach me md.imbeshat@gmail.com
How to create the first express app
People might think that creating an express app is a tedious task. But, my friend let me tell you that creating an express app is the easiest thing we can do. In this article, we will learn about Express and slowly strive towards creating the first E...
Prototype and Prototype chaining in JavaScript
What is a Prototype? Prototypes are the mechanism by which JavaScript objects inherit features from one another. All JavaScript objects inherit properties and methods from a prototype. For example:
Date objects inherit from Date.prototype .
Array o...
Objects & Working with Objects in JavaScript
What is an object in JavaScript? An object is one of the type of data types present in JavaScript. An object is a standalone entity, with properties and type. It is a collection of properties that stores various key-value pairs. For example - if we w...