Void concat(var [a] xs, [a] ys)
Arguments
xs: The first arrayys: The second array
Usage
Append the elements of the second array onto the first array.
xs = [1,2,3];
ys = [4,5];
concat(xs,ys);
// xs = [1,2,3,4,5]
// ys = [4,5]
xs: The first arrayys: The second arrayAppend the elements of the second array onto the first array.
xs = [1,2,3];
ys = [4,5];
concat(xs,ys);
// xs = [1,2,3,4,5]
// ys = [4,5]