Sort of at a dead end, I need to find a way to align an element from Array1 with a specified element from Array 2. I.e. A has the index of 1 and I want it to be aligned with e, How would I go about doing this? I have included two example arrays
var Array1 = ['A','B','C','D','E','F','G'];
var Array2 = ['a','b','c','d','e','f'.'g'];
I hope someone can help as been stuck on this for a few days now.
Thanks
cdes1145