Aditya Chaudharyjsweek1.hashnode.dev·Dec 19, 2024Introductary Week In JSHi everyone, welcome to the first article about my experiences, lessons, projects, and challenges from this week. This blog is divided into six sections, so you can focus on the parts that interest you: Things learnt this week. Steps I followed. P...1 likeJavaScript
Sowmiyanoobcoderr.hashnode.dev·Dec 18, 2024Day 3 of 30 Days of Java: Learning Loops the Kanye Way!1. The "For" Loop – Kanye on Repeat 🎤 Imagine Kanye playing "Stronger" on repeat for a set number of times—that's a for loop! It’s perfect when you know how many times you need to repeat something. Explaination: Kanye sings "GOAT" 5 times (0 to 4)...5 likes·45 readsTechHumor
Shivam Dubeygo-tutorial.hashnode.dev·Nov 13, 2024Mastering the for Loop in Go: The Only Loop You NeedIn Go, the for loop is the only looping construct you need. Unlike many other programming languages that have multiple types of loops (such as while and do-while), Go simplifies things by using the versatile for loop to handle all iterative tasks. By...go loop
Debajyoti Chandadevopsjournaldj.hashnode.dev·Nov 9, 2024Daily Log: November 8, 2024After a short break, I spent some time brushing up my Java knowledge and wrote some programs to reflect on : String class String is a reference data type and comes with several inbuilt methods which facilitate playing with String values. public class...SDET Learning logsJava
GaramYoongaramyoon.hashnode.dev·Nov 3, 2024Flag, Is It Always Efficient?//variables int value; int numOfValue = 0; int sum = 0; int stop = 100; int flag = 1; //first code with flag do { if (sum <= 100 && flag == 1 ) { Console.Write("Enter the value: "); value = Convert.ToInt32(Console....C#
gayatri kumargeekee.hashnode.dev·Oct 31, 2024Loop the Loop: Iterating Through Data!Imagine you’re on a Ferris wheel. The ride goes around, and each time you reach the top, you start the loop over again. In programming, loops are like this Ferris wheel: they allow you to repeat a set of actions until you decide to stop. Whether you’...50 likesWeb Developmentjs
Faria Karimfariakarim.hashnode.dev·Oct 31, 2024Ballerina Basics: 5 Fundamental Programming ConceptsIntroduction: This blog covers five fundamental programming concepts—variables, control structures, functions, data structures, and OOP—illustrated with examples in Ballerina. Mastering these basics is key to building efficient applications. 1. Varia...fundamentals
Stanley Owarietaday3-of-30days-js-blog.hashnode.dev·Oct 24, 2024Mastering JavaScript Loops: A Complete Guide for Software EngineersLoops are essential tools in JavaScript that enable developers to efficiently perform repetitive tasks. Understanding how loops operate and when to use them is vital for any software engineer. In this article, we will explore the different types of l...10 likesJavaScript
Vitthal Korvanvitthal-korvan.hashnode.dev·Oct 10, 2024Loops in JavaScriptWhat is loops? Loops in JavaScript allow you to repeatedly execute a block of code as long as a specified condition is true. Types of loops: 1. For Loop The for loop repeats a block of code a specific number of times, typically when you know how many...JavaScript CoreJavaScript
Arnav Singhpythonfornoobs.hashnode.dev·Oct 9, 2024Mastering Python Loops: For, While & Nested Loops ExplainedWhat will you learn? ConceptSummary For LoopRepeats a block of code a specific number of times using a sequence. While LoopContinues running a block of code as long as a condition remains true. Nested LoopsA loop inside another loop, useful ...10 likesPython for Noobswhile loop python