Raaj Aryanraajaryan.tech·Jun 15, 2024How to Improve User Experience with Image Previews: A Step-by-Step GuideIn today's digital age, providing a seamless user experience is crucial for web developers. One effective way to enhance user interaction is by allowing users to preview images before uploading them. This feature not only improves the user experience...DiscussJavaScript
Preethi Scodepuzzle.hashnode.dev·Jan 18, 2024Two Sum II Input Array Sorted | Two pointer | Leetcode 167 | Code challenge | Optimal ApproachCheck out the video here : [VIDEO] Step By Step Visualisation 🚀 Exciting Code Challenge Alert! 🚀Join us in unraveling the optimal approach to solve the LeetCode problem "Two Sum II - Input Array is Sorted" (Problem 167)! 🎯✨ In this code challenge...Discuss·10 likesGeneral Programming
vishal singhvishal21121.hashnode.dev·Dec 19, 2023Shallow copy vs Deep copyWhen dealing with arrays and objects in JavaScript, it is often necessary to create copies of these structures. Since both arrays and objects are mutable, understanding the implications of modifying a copied array or object on the original is crucial...DiscussJavaScript# shallow copy vs Deep copy
vishal singhvishal21121.hashnode.dev·Nov 6, 2023Introduction to Hoisting in JavaScriptThe JavaScript engine or interpreter when reading the script takes the variable declaration and function declaration to the top in memory, Initialisations are not hoisted. 👩💻 Coding Time Example - 1 console.log(a) // var is hoisted means we can a...Discuss·1 likeJavaScriptHoisting
vishal singhvishal21121.hashnode.dev·Oct 31, 2023Deep Dive into npm: Node Package ManagerWhat is npm? npm stands for Node Package Manager, which is the world's largest Software Registry. The registry contains over 1.5 million code packages. Open-source developers utilize npm to share software, while many organizations use it for managing...Discuss·45 readsnpm
vishal singhvishal21121.hashnode.dev·Oct 26, 2023Closures in JavaScriptIntroduction Closures are created when the function is defined, allowing the nested child function to access the parent's variables even when the parent function has finished its execution. Now let's learn Closures with examples. Examples From the b...DiscussJavaScriptclosures in javascript
Sohini BhattacharjeeforCoders Communitycoders-community.hashnode.dev·Mar 9, 2023Part 1: Introduction to Google Dialogflow: What it is and Why You Should Use itWhat is Google Dialogflow? Dialogflow is a Google-owned framework that simplifies the process of creating and designing an NLP(Natural Language Processing) conversational chat & voice assistant which can accept voice or text data from the Dialogflow ...Discuss·5 likes·95 reads#coderscommunity
vishal singhforCoders Communitycoders-community.hashnode.dev·Mar 7, 2023MongoDB - A complete referenceIntroduction A well-liked open-source NoSQL document database system is MongoDB. It is made to be extremely versatile and scalable, enabling developers to create and maintain complex systems with ease. In contrast to conventional relational databases...Sohini Bhattacharjee and 1 other are discussing this2 people are discussing thisDiscuss·2 likes·53 reads#coderscommunity
vishal singhforCoders Communitycoders-community.hashnode.dev·Feb 10, 2023Git and GitHub a MysteryDo you want to work on open-source projects? Do you want to develop a project with your friends? then Git is the best thing to learn. What is version control? Version control is a system which records the changes in a file or set of files of a folder...Discuss·1 like·63 readsGitHub