AAmartyainamartyars.hashnode.dev·Jun 6, 2022 · 3 min readTraditional vs Arrow functionIn JavaScript, you can write functions in a couple of ways. One way is by using the function keyword, which I will be referring to as a traditional function. And another way is by using the following syntax const func = () => {} which is known as the...00
AAmartyainamartyars.hashnode.dev·Jun 5, 2022 · 3 min readvar vs let vs constIn this blog, we are going to discuss the various ways in which we can declare variables in JavaScript and how they differ from each other. By the end, you must be able to understand which one to use and why. But, before moving forward if you are jus...00
AAmartyainamartyars.hashnode.dev·Dec 4, 2021 · 2 min readCSS Box Model: A guide for beginner'sThe concept of box model is one of the most fundamental concept in web development. This model is nothing but the way an HTML element is structured, also these elements can be styled using CSS. There are four parts constituting the model and all of t...00
AAmartyainamartyars.hashnode.dev·Dec 4, 2021 · 3 min readAn intro to objectsConfused about what an object is? Is there any similarity between a real-life object and the one in the programming world? No worries stick around, we will not only understand what it is but also learn how to create an object in JavaScript. So, le...00