How can I find the variable type in Kotlin? In Java there is instanceof, but in Kotlin it does not exist:
instanceof
val properties = System.getProperties() // Which type?
You can use like this:
val value="value" println(value::class.java.typeName)