IAImbeshat Aslaminimbeshat.hashnode.dev·Apr 1, 2023 · 3 min readHow to create the first express appPeople 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...00
IAImbeshat Aslaminimbeshat.hashnode.dev·Jan 17, 2023 · 2 min readPrototype and Prototype chaining in JavaScriptWhat 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...00
IAImbeshat Aslaminimbeshat.hashnode.dev·Jan 14, 2023 · 3 min readObjects & Working with Objects in JavaScriptWhat 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...00
IAImbeshat Aslaminimbeshat.hashnode.dev·Dec 18, 2022 · 3 min readArray Methods in JavaScriptFirst, let's understand what an array is before exploring more about array methods. What is Array? An Array object in JavaScript is used to store a collection of multiple items under a single variable name. We can fetch any array element with the hel...00
IAImbeshat Aslaminimbeshat.hashnode.dev·Nov 25, 2022 · 3 min readAudio and Video TagBrief Introduction about audio and video tag In HTML5 we can include audio and video support without the need for Flash. The HTML5 audio and video tags make it simple to add media to a website. We have to set src attribute to identify the media sourc...00