Kotlin Variables: Mutable vs Immutable
In Kotlin, there are two types of variables; mutable variable and immutable variable. Mutable Variables Mutable variable is a variable whose value can be changed or updated from time to time. To declare a mutable variable, we use the var…