Range

Exploring Kotlin Ranges with Examples

Ranges are used to express a series of number with a starting value and an ending value. Kotlin Ranges could be useful in expression evaluation and looping statements. Usually in looping statements, a variable is created initially and is incremented/decremented through repetitions, and an expression is checked if the value is greater that or less […]

Scroll to top