Answers for "what is difference between val and var in kotlin"

6

what is the difference var and val in kotlin

variables defined with var are mutable(Read and Write)

variables defined with val are immutable(Read only)
Posted by: Guest on October-15-2021

Code answers related to "what is difference between val and var in kotlin"

Browse Popular Code Answers by Language