David Adeyinkadavidadecodes.hashnode.dev·Sep 21, 2023A short but needed breakBreak from the blogs...nah😂. It's just a short break from actively learning code. There is a lot going on. As for C programming language, once I start a personal project I would run it through this series. If you want me to talk about other stuff al...DiscussAlx
Manjit Baishyamy-coding-roadmap.hashnode.dev·Aug 15, 202315. Mastering Break and Continue Statements in C++In the world of programming, efficiency and control over program flow are crucial. Two powerful tools that provide this control within loops are the break statement and the continue statement. These statements allow programmers to manipulate loop beh...DiscussC++break
Jose Ramireznowaymyname.hashnode.dev·Jul 26, 2023Embracing the Quiet Days: Coding & Doing NothingThere are days when the world seems to slow down. Days when the noise of coding, problem-solving, and constantly pushing boundaries fades into the background. Today was one such day for me. It was a day when I did practically nothing, except update o...Discussbreak
Gideon Batureblog.benehub.tech·Jun 29, 2023Breaking the Chains of Inconsistency: How to Be More Consistent in Your LifeSo many persons have this inner longing to be consistent at what they do, these include exercising, early morning jogging, praying, reading books, learning a skill, finishing a course, finishing a training etc. But most find out that most of the thin...Discuss·22 likes·71 readschains
Aditya Deshwaljavacodewithaditya.hashnode.dev·Jun 7, 2023Break and ContinueBreak and Continue are the 2 keywords that are mostly used in loop statements. Break Statement As the name suggests Break keyword is used to break from the loop. Example 1 : Keep Entering the Number Until It is the multiple of 10. import java.util.Sc...Discussbreak
Sai Pranaysaipranay47.hashnode.dev·Apr 25, 2023Productivity Tips for DevelopersAs a developer, you likely have a lot of tasks to complete each day, and it can be challenging to stay focused and efficient. However, by following a few simple tips, you can improve your productivity and achieve more in less time. Here are five tips...Discuss·11 likes·26 readsProductivity
Debasish Lenkadebasishlenka.in·Feb 4, 2023Use cases for continue and break statements in JavaScript.In JavaScript, the continue and break statements are used to control the flow of execution within loops. The continue statement used to skip the current iteration of a loop and move on to the next iteration. It is often used when you only want to pro...Discuss·10 likes·65 readsUpWebJavaScript