NJNikhil Jhainjavascript-essential.hashnode.dev00JavaScript Modules: Import and Export Explained3d ago · 4 min read · Why Modules Are Needed Before modules, JavaScript code was often written in one large file or multiple loosely connected files. ❌ Problems with this approach: Global namespace pollutionVariables and Join discussion
NJNikhil Jhainjavascript-essential.hashnode.dev00Understanding Object-Oriented Programming (OOP) in JavaScriptMar 13 · 6 min read · when You Create a website or app For large scale customer. Then Managing the code became more difficult. That's Where Object-oriented-programming (oop) comes. OOP allow us to organise the code into reJoin discussion
NJNikhil Jhainjavascript-essential.hashnode.dev00Understanding Objects in JavaScriptMar 13 · 4 min read · In JavaScript, objects are one of the most important data structures. Almost everything in JavaScript is based on objects. If you understand objects well, writing JavaScript becomes much easier. In thJoin discussion
NJNikhil Jhainjavascript-essential.hashnode.dev00Understanding Variables and Data Types in JavaScriptMar 12 · 7 min read · When someone starts learning JavaScript, one of the first things they come across is variables and data types. These two ideas are very important because they allow a program to store information and Join discussion
NJNikhil Jhainjavascript-essential.hashnode.dev00Control Flow in JavaScriptMar 12 · 5 min read · control flow in JavaScript is the order in which a program's statements executed. By default code run sequentially from top to bottom but control flow allow developer to alter this order based on condJoin discussion