can I turn the keys of a Map<String, Int> in...
# getting-started
o
can I turn the keys of a Map<String, Int> into a String array?
items.keys.toList().toTypedArray()
y
No need for the
toList()
conversion, you can just directly do
items.keys.toTypedArray()
o
ah ok thanks