jbrave
16 years agoChannel Surfer
array concatenation?
is there a way to concatenate arrays?
this results in a two element array containing two arrays, instead of one array containing all six elements.
- Joel
arrayone=["test","west","best"]
arraytwo=["guest","fest","blessed"]
arraythree= [arrayone+arraytwo]
this results in a two element array containing two arrays, instead of one array containing all six elements.
- Joel