AOAravind Ontagodiinaravindontagodi.hashnode.dev路Sep 11, 2022 路 4 min readJavaScript Interview Preparation Cheat sheetScope In JS let a=4; console.log(a); In the above code snippet we haven't used any { } to write the code but does this mean that we are not using any scope here NO! code is actually executed in the global execution context. The scope is the current ...00
AOAravind Ontagodiinaravindontagodi.hashnode.dev路Sep 2, 2022 路 5 min readArrays in JavaScript an in depth guideWhat are Arrays in JavaScript Arrays are the neat way of storing the data items under a single variable name .So that we can access those data items very easily later in the program and use them to perform useful operations. Let's say if we don't hav...00
AOAravind Ontagodiinaravindontagodi.hashnode.dev路Jul 23, 2022 路 2 min readMarkdown for README.md in GitHubThis article is about how to write markdown using markdown features of Hashnode馃槂馃槃馃槀馃ぃ馃ぃ Headers Markdown # H1 ## H2 ### H3 #### H4 ##### H5 ###### H6 output H1 H2 H3 H4 H5 H6 Emphasis italics *something italic* or _underscores_ strong emphasis ak...00