SKSagar Kumarinwhat-happens-behind-the-scenes-after-url.hashnode.dev00Template Literals in JavaScript2h ago · 1 min read · In 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 inlJoin discussion
SKSagar Kumarinwhat-happens-behind-the-scenes-after-url.hashnode.dev00Flattening JavaScript Arrays 2h ago · 1 min read · 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 tenJoin discussion
SKSagar Kumarinwhat-happens-behind-the-scenes-after-url.hashnode.dev00JavaScript Modules3h ago · 1 min read · This 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 saJoin discussion
SKSagar Kumarinwhat-happens-behind-the-scenes-after-url.hashnode.dev00Asynchronous Code in Node js3h ago · 2 min read · In javascript, we used to write code and after execution it generally gave an output but things get slower when we try to do some big computations, I/O and some tasks which required network requests oJoin discussion
SKSagar Kumarindigital-syntax.hashnode.dev00CSS Selectors 101: Targeting Elements with PrecisionMar 14 · 1 min read · CSS selectors are used to select and apply CSS properties to the specific portion of the webpages. For Eg: h1{ backgound-color: red; } These target specific HTML elements and In DOM we say nodelist. WJoin discussion