hi
when i create an array of objects i have to set the length of the array at the beginning but what if i would like to add a new object to this array? is it possible?
in java it is:
when i create an array of objects i have to set the length of the array at the beginning but what if i would like to add a new object to this array? is it possible?
in java it is:
B4X:
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits[4] = "Lemon";