kotlin var vs val

var – Variable delcare with var keywordare are Mutable Variables, value of variable can be changed val – Variable declare with val keyword are Immutable Variables, this is read only variables. it’s not constant value. It is similar to final variable in Java.