Arya M. Pathakarya2004.hashnode.dev·Jul 20, 2024Deep Dive into Go: Control Statements, Packages, Declarations, and OperatorsWe’ve touched on these topics before, but let’s circle back and explore them in greater detail. Specifically, we'll look at control statements, packages, declarations, and operators. Buckle up, it’s gonna be fun! Control Structures in Go If Statement...Discuss·10 likesGo Deep: Mastering Golang FundamentalsGo Language
CODE SENSEIcodesensei.hashnode.dev·Jul 16, 2024How to Use Conditionalsconditions are crucial concepts in programming as they help us save lines of code and manage memory efficiently. CONDITIONALS As the name suggests, conditionals are used to set rules and make decisions based on circumstances. For example, when drivin...DiscussConditional statement
ritiksharmaaaritiksharmaaa.hashnode.dev·Jul 15, 2024DSA Week 1: Master Data Types, Loops, and Conditional Operators to Kickstart Your Coding Journey!Week 1-2: Fundamentals Day 1-2: Data Types Learning: int, float, boolean, string, char, long, double, bigint Practice: Exercises on each data type Day 3-4: Condition Operators Learning: if-else, switch statement, ternary operator Practice: Co...DiscussData Structure And AlgorithmsDSA
Saurabh Damalehackroot1.hashnode.dev·Jul 11, 2024Understanding PHP Conditional Statements: if, else, and switch ExplainedToday, we will explore PHP conditional statements, which allow you to execute different blocks of code based on certain conditions. Conditional statements are fundamental in programming as they enable decision-making in your code. Let's dive into the...DiscussPHP
Kirsty-kinskirsty.hashnode.dev·Jul 6, 2024How to Use If, Else, and Switch Statements in JavaScriptIntroduction In this tutorial, I will show you how to use two control structures in JavaScript: the if/else statement and the switch statement. 😀 By the end of this article, you'll be able to use both in your projects and understand control flow in ...Discuss·11 likes·37 readsJavaScript
Jahkamsojahkamso.hashnode.dev·Jun 28, 2024Conditionals in React? Are they useful?What are conditionals in React? A simple example of this would be: take for example you have a kid or sibling, and you want them to do something (e.g read for exams). You can give them a condition that if they read a book that day, you'll get ice cre...Discuss·10 likesReact
Nikunj Vaishnavdevcloudjourney.hashnode.dev·Jun 24, 2024The Power and Simplicity of Shell Scripting: A Beginner's GuideShell scripting is one of those skills that every developer or IT professional should have in their toolkit. It's a powerful way to automate tasks, manage systems, and simplify complex processes with just a few lines of code. In this blog post, I'll ...Discussshell script
Rishabh Mishrarishabhmishra.hashnode.dev·Jun 21, 2024Day 3: Exploring Conditional Statements, Logical Operators, and Interactive ProgramsHello everyone! Today in my journey through Python programming, I delved deeper into conditional statements, logical operators, and created interactive programs that respond dynamically to user inputs. Let’s dive into what I've learned and the exciti...DiscussPythonPython
Peter Akojedepeterakojede.hashnode.dev·Jun 14, 2024Conditional Statements In JavaScriptwe use conditional statement in javascript when we want to perform different actions based on different conditions. They are the fundamental part of programming and use when certain conditions are either true or false. uderstanding them will enable y...Discuss·10 likesProgramming Blogs
Vatsal Bhesaniyavatsal08.hashnode.dev·May 17, 2024Mastering Control Flow in JavaScript: A Comprehensive GuideConditional statements Conditional statements are used to execute different blocks of code based on certain conditions. The if statement is the most common conditional statement in JavaScript. let age = 18; if (age >= 18) { console.log("You ar...DiscussJavaScript