Range and Control Statements

Learn to utilize ranges along with break and continue statements for streamlined and optimized looping.

Range

In Kotlin, if we place two dots between two numbers, like 1..5, we create an IntRange. This class implements Iterable<Int>, so we can use it in a for loop:

Get hands-on with 1300+ tech skills courses.