SSuryainsuryxks.hashnode.dev·Jun 16, 2022 · 4 min readUnderstanding Scope in JavascriptScope in js If you'd like to code in JavaScript, understanding the scope of variables is a must. So before understaning what is scope lets see some code snippets and examples so that we can understand scope in a better way const a=1; console.log(a); ...00
SSuryainsuryxks.hashnode.dev·Aug 15, 2021 · 2 min readPlaying With DOM using JavascriptWhat do you mean by DOM ? The Document object model(DOM) is an application programming interface (API) for HTML , The browser parses the content into a tree of Objects Which is Known as DOM, we can access these objects and make changes in the documen...00
SSuryainsuryxks.hashnode.dev·Aug 14, 2021 · 2 min readSemantic HTMLSemantic HTML What is Semantics? In Programming world semantics refers to the meaning of a piece of code. Why do we need semantic HTML ? semantic HTML tags makes your HTML readable. It increases accessibility of your website, also makes it easier...01S