Question: I'm looking at Kotlin's delegated proper...
# javascript
a
Question: I'm looking at Kotlin's delegated properties docs and it shows an example where you can delegate to values in a
Map
. Can this also work with
Json
in Kotlin/JS? https://kotlinlang.org/docs/reference/delegated-properties.html#storing-properties-in-a-map
d
Yes, but I think you'd have to write the necessary
operator fun
bridges as extension methods yourself.