How to delete element from array in kotlin ? can ...
# announcements
m
How to delete element from array in kotlin ? can u give me simple example ?
r
You can't. Arrays can't be resized. If you want to change the size, use a list.
m
Thank you ..
c
You can remove an element from an array if the array is mutable
r
That's a list, not an array
c
Yeah your right, my bad. I got the two confused