Kotlin - Loops and Ranges
Why does the
continue statement inside a Kotlin loop not exit the loop but only skip the current iteration?continue statement inside a Kotlin loop not exit the loop but only skip the current iteration?continue is meant to skip the rest of the current iteration and move to the next one.break exits the loop entirely, while continue only skips current iteration.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions