SKSagar Kumarinwhat-happens-behind-the-scenes-after-url.hashnode.dev·May 6 · 2 min readExpress.jsExpress.js is a minimal, flexible Node.js web application framework designed to simplify the process of building robust APIs and server-side applications. It is a lightweight layer on top of Node’s bu00
SKSagar Kumarinwhat-happens-behind-the-scenes-after-url.hashnode.dev·May 6 · 3 min readReact Virtual DOM under the HoodIn Browser, the DOM is managed by the browser. So, the main problem faced by multiple developers was managing the state and context, when one element is connected to different elements, It was a total00
SKSagar Kumarinwhat-happens-behind-the-scenes-after-url.hashnode.dev·Apr 26 · 1 min readTemplate Literals in JavaScriptIn javascript, template literals can be used using `${text}` . In modern javascript, template literals is the best way to write string. Some benefits of template literals over Strings: It can add inl00
SKSagar Kumarinwhat-happens-behind-the-scenes-after-url.hashnode.dev·Apr 26 · 1 min readFlattening JavaScript Arrays Sometimes, we need to put arrays in arrays. Like when we're making something like 2D or 3D, for writing matrices and other data structure like binary trees, linked list, queue system and so on. We ten00
SKSagar Kumarinwhat-happens-behind-the-scenes-after-url.hashnode.dev·Apr 26 · 1 min readJavaScript ModulesThis article would brief the overall pros and cons of using javascript modules. Modules: Module is a piece of reusable code, functions which can be used in multiple projects. So, instead of writing sa00