While loop is a type of indefinite loop.
The while loop executes the block of code until the condition is true.
We mostly use while loop when we don’t know how many times the loop will actually execute at runtime.
In simple terms when iterations of a loop are known then we mainly use for loop and when iterations are unknown then we use while loop.
Syntax
while (condition) {
//Statements to be executed if the condition is true
}
Program
main() {
int number = 0;
while (number < 10) {
if (number % 2 == 0) {
print(number);
}
number++;
}
}
Output
0
2
4
6
8
That’s it for while loop guys. Feel free to share with me if I miss something I will love to learn it from you.
Till Then Keep Loving, Keep Coding. And just like always I’ll surely catch you up in the next article.
Remember no teacher, no book, no video tutorial, or no blog can teach you everything. As one said Learning is Journey and Journey never ends. Just collect some data from here and there, read it, learn it, practice it, and try to apply it. Don’t feel hesitate that you can’t do that or you don’t know this concept or that concept. Remember every programmer was passed from the path on which you are walking right now. Remember Every Master was Once a Beginner. Work hard and Give your best.
Learn more about Dart and Flutter
- List in Dart
- Abstract class and Abstract Methods in Dart
- Interface in Dart
- Constructors in Dart
- Arrow Function in Dart
- User Defined Function in Dart
- Functions in Dart
- Switch case in Dart
- Conditionals in Dart
- Operators in Dart
- Keywords in Dart
- Variables in Dart
- Data Types in Dart
Top comments (0)