psandekian
Programmer
Does anyone know if VB 6 has a function to concatenate two arrays into one?
Thanks.
Patty [sig][/sig]
Thanks.
Patty [sig][/sig]
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function ConcatArrayDemo(){
var a, b, c, d;
a = new Array(1,2,3);
b = "JScript";
c = new Array(42, "VBScript);
d = a.concat(b, c);
//Returns the array [1, 2, 3, "JScript", 42, "VBScript"]
return(d);
}