NPNikhil Prasharinnikhilprashar.hashnode.dev00Synchronous vs Asynchronous JavaScript.13h ago · 5 min read · What synchronous code means. Synchronous code means the code you write is executed line by line, from top to bottom. If a function is running on line 5, it must complete first. Only after that will Join discussion
NPNikhil Prasharinnikhilprashar.hashnode.dev00JavaScript Promises.15h ago · 6 min read · What problem promises solve. The problem statement is this. We all know that JavaScript executes code line-by-line, from top to bottom. Now imagine you have five functions in a file, all independent,Join discussion
NPNikhil Prasharinnikhilprashar.hashnode.dev00Error Handling in JavaScript.2d ago · 7 min read · What errors are in JavaScript. So from the word error, you already get an idea about topic. As everyone knows, an error means something went wrong in the code output or you can also say an unexpectedJoin discussion
NPNikhil Prasharinnikhilprashar.hashnode.dev00JavaScript Modules.Mar 28 · 5 min read · Why modules are needed. Before learning JavaScript modules, first understand the problem statement. The problem is simple, if you want to use code from one file in another file (for example, using a Join discussion
NPNikhil Prasharinnikhilprashar.hashnode.dev00Destructuring in JavaScript.Mar 28 · 5 min read · What destructring means. Problem :- Before understanding destructuring, let's first look at the problem statement. The problem is, you have an array or an object, and it contains multiple values. If yJoin discussion