AAbdullahinabdxllahblogs.hashnode.dev·Apr 28 · 8 min readUnderstanding the this Keyword in JavaScriptPeople who have spent time writing JavaScript have definitely come across the this keyword and often get confused because of its behaviour. It behaves differently in JavaScript as compared to other la00
AAbdullahinabdxllahblogs.hashnode.dev·Apr 22 · 6 min readJavaScript Modules: Import and Export ExplainedWhy Modules Are Needed Before we directly jump into knowing more about JavaScript modules, let us know more about the issues that developers faced without JavaScript Modules. Most of us have already m00
AAbdullahinabdxllahblogs.hashnode.dev·Apr 8 · 6 min readTemplate Literals in JavaScriptMost of us have given interviews in the past and if not let me walk you through a common pattern I've noticed in the interviews I've attended. You are asked a question, you either answer it or fail to00
AAbdullahinabdxllahblogs.hashnode.dev·Mar 15 · 4 min readUnderstanding Object-Oriented Programming (OOP) in JavaScriptProgramming can sometimes become repetitive. Imagine writing the same type of code again and again just for different data. For example, creating multiple students, multiple cars, or multiple users. T00
AAbdullahinabdxllahblogs.hashnode.dev·Mar 15 · 3 min readThe Magic of this, call(), apply(), and bind() in JavaScriptJavascript has a keyword this, which often confuses beginners. Then comes in call(), apply() and bind() to make the situation even worse. We’ll be walking through these in a simple way, explaining the00