Working in JavaScript, I have two arrays that I need to combine to generate a concatenation of all its elements, for example:
var array1 = ["A", "B", "C"];
var array2 = ["1", "2", "3"];
resultado = ["A1", "A2", "A3", "B1", "B2", "B3", "C1", "...
asked by
07.10.2016 / 15:12