The compiler converts a list property `entries` to...
# javascript
f
The compiler converts a list property
entries
to something like:
object.entries.array_hd7ov6$_0
. Is there a way to give it a nice name via
@jsname
? Or should I just use Arrays instead of Lists?
j
Array generates [] which works well with JS List and MutableList generates a very complex structure that doesn't just work with external JS code
f
Thanks for your input