ABAbhishek Badolainjavascript-cohort-2026.hashnode.dev00Callbacks in JavaScript: Why They Exist ?1d ago · 4 min read · What are Functions in JavaScript Think of a function as a reusable block of code that can perform a specific task and can be used multiple times by the user. We use them to avoid repeating code, makinJoin discussion
ABAbhishek Badolainjavascript-cohort-2026.hashnode.dev00Template Literals in JavaScript1d ago · 5 min read · In JavaScript, strings are declared by enclosing text in single quotes, double quotes, or backticks(template literal), and assigned to a variable using var, let, or const. Example: String Literal (TraJoin discussion
ABAbhishek Badolainjavascript-cohort-2026.hashnode.dev00Array Flatten in JavaScriptMar 23 · 4 min read · What is an Array ? An Array is an ordered collection of values. The values can be any of the data types like number,string ,object,symbol, arrays etc. Think of it like a fruit of basket having differeJoin discussion
ABAbhishek Badolainjavascript-cohort-2026.hashnode.dev00Browser Events and Event PhasesMar 21 · 4 min read · Browser Events Any actions that is performed on the webpage which can be detected with the help of JavaScript and act on it are known as Browser events. An event can be triggered by a user action, likJoin discussion
ABAbhishek Badolainjavascript-cohort-2026.hashnode.dev00JavaScript Modules: Import and Export ExplainedMar 19 · 4 min read · Modules in JavaScript Let's try to break the concept of a module with a real-life example. Suppose there is a Ticket Booking app. If the developer has put all the code of the app in one file, then theJoin discussion