ADAmit Dewanganinamitdewanganblog.hashnode.dev00Map and Set in JavaScript1d ago · 2 min read · JavaScript gives us powerful data structures beyond arrays and objects — Map and Set. These help us write cleaner, faster, and more efficient code. In this blog, we’ll break everything down in a simplJoin discussion
ADAmit Dewanganinamitdewanganblog.hashnode.dev00Async/Await in JavaScript: Writing Cleaner Asynchronous Code2d ago · 2 min read · Why async/await is introduced As we know the the flow(it exe code line by line and wait the previous code to exe) and the problem of sync js code, then we have to use async/await to overcome the problJoin discussion
ADAmit Dewanganinamitdewanganblog.hashnode.dev00Synchronous vs Asynchronous JavaScript2d ago · 2 min read · Mainly JavaScript divide into two parts Sync and Async, we heared about js that it has single thread to perform , somehow they perfrom async task(with the help of event loop) bit of confusing let's unJoin discussion
ADAmit Dewanganinamitdewanganblog.hashnode.dev00The new Keyword in JavaScript 2d ago · 2 min read · We widely use new keyword in modern days of JavaScript, let understand what happen in behind the scene when we write new in code. What the new keyword does It helps to create an instance of user-definJoin discussion
ADAmit Dewanganinamitdewanganblog.hashnode.dev00String Polyfills and Common Interview Methods in JavaScript2d ago · 2 min read · Let's understand the String polyfills here in this blog in very simple terms What string methods are JavaScript provides a lots of string methods to manipulate the text and perform operation over it, Join discussion