Christian75
Member
Hi,
Is it possible to make this in BANano B4j:
I tried something like this:
But the above does not work.
Or is the only option to merge them in a function at init?
Is it possible to make this in BANano B4j:
JavaScript:
const arr1 = ["Cecilie", "Lone"];
const arr2 = [1, 2, 3];
const arr3 = arr1.concat(arr2);
I tried something like this:
B4X:
Private hidden() As String = Array As String("one", "two", "three")
Private shown() As String = Array As String("four", "five", "six")
Private all() As String = Array As String(hidden(), shown())
But the above does not work.
Or is the only option to merge them in a function at init?