William Persall
06/05/2022, 3:55 PMvar mymap = mapOf<String, List<Strings>>("hello" to listOf("world 1", "world 2"), "Goodbye", listOf())
val mykeys = mymap.keys
In the broswer this will error with a typeerror of cannot getKeys
if I do
val mypairs= mymap.toList() I get a type error of getsizeWilliam Persall
06/05/2022, 3:58 PMWilliam Persall
06/05/2022, 4:00 PM