Anmol singhjavascripts.hashnode.dev·Dec 29, 2024Practice QuestionQs. Find the errors in the following code? Common Coding Errors in JavaScript and How to Fix Them When writing JavaScript code, small mistakes can lead to unexpected errors or bugs. Here, we’ll explore common issues with variable declarations and ass...Practice coding
Anmol singhjavascripts.hashnode.dev·Dec 29, 2024Top Practice Questions to Enhance Your SkillsPractice Questions 1. What is the value of age after this code runs? Code Example: let age = 10; age + 2; // ❎ This does nothing since the result is not stored. age = age + 2; // ✅ Correct way to update the value of 'age' In JavaScript, the = sign...Practice Questions javascript
Raaj Aryanraajaryan.tech·Jun 15, 2024Generating Random Colors in JavaScript: A Step-by-Step GuideColors play a crucial role in web design, bringing vibrancy and personality to your applications. One interesting way to make your web applications more dynamic is by generating random colors. In this blog post, we'll explore different methods to gen...6 likesJavaScript
Manoj Paudelpdlmanoj.hashnode.dev·May 16, 2024Session 1 - Python FundamentalsPython is a programming language that has become very famous in recent years. It is powerful, flexible, and easy to learn. Since it was first released in 1991 by Guido van Rossum, Python has been a great choice for both new and experienced coders bec...python beginner
Simran Bansalblog.sibansal.dev·Dec 7, 2023Explained and Solved: Rotate Array: DSA ProblemProblem Given an integer array nums, rotate the array to the right by k steps, where k is non-negative. Example 1: Input: nums = [1,2,3,4,5,6,7], k = 3 Output: [5,6,7,1,2,3,4] Explanation: rotate 1 steps to the right: [7,1,2,3,4,5,6] rotate 2 steps t...data structures
Arpit Dwivediblog.arpitdwivedi.in·Oct 26, 2023The Art of Wit and Wisdom - Commenting in .NET Core with C#Ah, code comments—the unsung heroes of the programming world. They're like the spices in your favorite dish, the secret ingredient that transforms cryptic code into a symphony of logic. As the great programmer Shakespeare once said, "To comment or no...10 likes·238 readsCoding ChroniclesPractice coding
Arpit Dwivediblog.arpitdwivedi.in·Oct 12, 2023The Critical Role of Input Validation in Web SecurityIn today's digital age, web applications serve as the backbone of businesses, entertainment, social interactions, and more. Yet, with the increasing reliance on these platforms comes the amplified risk of security breaches. A startling 35% of securit...10 likes·104 readswebsecurity
vazid shaikvazidnh3.hashnode.dev·Apr 17, 2023Top 10 Coding Practice Platforms for DevelopersIntroduction "Top 10 Coding Practice Platforms for Developers: A Comprehensive Review" is an article that provides an in-depth overview of the best coding practice platforms available for developers. It includes a comprehensive review of each platfor...3 likes·64 readsDeveloper
Himanshu Chauhanhimanshuchauhan.hashnode.dev·Mar 28, 2023Good Bad and Ugly this monthI have started this Good Bad ugly blog to learn from my past. Last month I started learning Data structure and practicing it on Leetcode. The main idea of this blog is to acknowledge Good things and improve Bad things and make them good. Many things ...#growth
Andrew Sharifikiaalireza-sharifikia.hashnode.dev·Mar 1, 2023All You Need to Know About Sorting AlgorithmsForeword Sorting algorithms are some procedural methods that we use to rearrange the elements in an ordered list of items based on a criterion. A developer must study this subject extensively and regularly because sorting algorithms are: Always pres...28 readssorting algorithms