Kotlin Control Flow

Kotlin do-while Loop

In this article, you will learn about the do-while loop and how to create do-while loop in Kotlin programming. Loops in Kotlin are used when we want to execute a block of statements repeatedly until a specific condition is met(condition is false). Kotlin do-while Loop Kotlin’s do-while loop is an exit-control loop, which means unlike while loop, the do-while …

Kotlin do-while LoopRead More »

Kotlin while Loop

In this article, you will learn about while loop and how to create while loop in Kotlin programming. Loops in Kotlin are used when we want to execute a block of statements repeatedly until a specific condition is met(condition is false). Kotlin While Loop The while loop executes the block of code as long as a specified …

Kotlin while LoopRead More »

Kotlin when Expression

In this article, you will learn about when expression in Kotlin with the help of various examples. In Kotlin, when replaces the switch operator of other languages like Java, C, C++, etc. when matches its argument against all branches sequentially until some branch condition is satisfied. After the first match found, it reaches to end of the …

Kotlin when ExpressionRead More »

Kotlin if Expression

In this article, you will learn to use if expression in Kotlin with the help of examples. There are different types of if expression in Kotlin: if-else expression if-else-if ladder expression nested if expression Traditional if Statement if statement The if statement checks the given condition. If the condition evaluates to be true then the …

Kotlin if ExpressionRead More »

%d bloggers like this: