rrader
12/27/2018, 12:55 PMundefined value, what is equivalent in Kotlin?anton.bannykh
12/27/2018, 1:01 PMrrader
12/27/2018, 1:05 PMundefined is sent from JS to Kotlin?anton.bannykh
12/27/2018, 1:05 PMundefined it gets treated as null in most cases (e.g. undefined ?: 1 yields 1). You can still distinguish it from null using the === operator if you need to (e.g. undefined !== null)rrader
12/27/2018, 1:06 PManton.bannykh
12/27/2018, 1:29 PMrrader
12/27/2018, 1:39 PManton.bannykh
12/27/2018, 4:44 PM