I'm trying to combine 2 arrays in javascript into one.
var lines = new Array("a","b","c");
lines = new Array("d","e","f");
This is a quick example, i want to be able to combine them so that when the second line is read the 4th element in the array would return "d"
How would i do this?
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…