SMSai Mounika Periinsaimounikaperi.hashnode.dev·Feb 26, 2023 · 52 min readObject Oriented Programming in JavaScriptIntroduction A Class is a blueprint used to create objects in JavaScript. Classes in JavaScript can be defined as a template that encapsulates the data with code to work on that data. The classes in JavaScript are provided in the ES6 addition to exte...00
SMSai Mounika Periinsaimounikaperi.hashnode.dev·Feb 19, 2023 · 28 min readAsynchronous JavascriptIntroduction JavaScript is a single-threaded programming language that is very popular in Web Development. JavaScript can be synchronous as well as asynchronous. The browser also performs numerous functions for example, various web APIs are accessed ...01A
SMSai Mounika Periinsaimounikaperi.hashnode.dev·Feb 19, 2023 · 12 min readClosures In JavaScriptIntroduction Closure in Javascript can be defined as the bundle of functions along with its lexical environment. Closures in Javascript are created every time a function is created. What are Scopes? Scopes in JavaScript are the portion of the code wh...00
SMSai Mounika Periinsaimounikaperi.hashnode.dev·Feb 18, 2023 · 38 min readEvents in JavaScriptEvents Events are signals that tell us something has happened. It can be a clicking on a button, pressing keys on the keyboard or moving the mouse over an element. With the help of JavaScript, one can respond to these events when used on web pages. E...00
SMSai Mounika Periinsaimounikaperi.hashnode.dev·Feb 10, 2023 · 11 min readDeep Dive into Objects in JavaScriptWhat are Objects Objects are core data structures in JavaScript, an object is a super important data structure because it typically is used or helps us reflect real-world entities. Now technically, objects in JavaScript are of course data structures ...00