PSPrabhav Sharmainprabhavsharmaa.hashnode.dev·Jul 27, 2023 · 5 min readHow variables really work?We all use variables every day, it's one of the most fundamental parts of any programming language, without it we'd only be able to create very simple programs. However, do we fully understand how they're understood and used by the engine, particular...00
PSPrabhav Sharmainprabhavsharmaa.hashnode.dev·May 13, 2022 · 8 min readPopping some bubbles (event bubbling in JS)Introduction The first time I ran into these topics, I was perplexed, but when I finished my research, things made more sense than ever before, and I'll aim to help you gain the same level of understanding through this blog. Pre-requisites This is th...00
PSPrabhav Sharmainprabhavsharmaa.hashnode.dev·May 10, 2022 · 6 min readA series of fortunate events (in JavaScript)Introduction Events in JavaScript are just like the events outside of JavaScript. The idea is vaguely the same. Event means an occurrence, something that is happening, happened or will happen. Most of us have used events in JS but haven't deep-dived ...01B
PSPrabhav Sharmainprabhavsharmaa.hashnode.dev·Jan 17, 2022 · 7 min readWhy let, const and var can't work things out.When I started writing my first programs in JavaScript, I used to assign all my bindings with var, I came from a Java background and I was astonished to see that here, we didn't need to define the type of the binding, just use a keyword and let the l...00