kotlin var code example

Example 1: kotlin variable

val name = ”Marcin” // Can't be changed
var age = 5 // Can be changed
age++

Example 2: how to define variable in kotlin

val firstName: String = "Chike"
val variable name: Typeofthevariable = TheValueofyourvariable

Example 3: kotlin var and val

val declares a read-only property, var a mutable one

Example 4: var and val in kotlin

val and var both are used to declare a variable. var is like general variable and it's known as a mutable variable in kotlin and can be assigned multiple times. val is like Final variable and it's known as immutable in kotlin and can be initialized only single time.