Hi,
currently i have an array which loads data from json. Apparently an event is triggerd which loads another json string (with additianal content, same array structure), but instead of replacing the whole content of the array i want to append the content at the "end" so the existing array will be extended.
the only way i can imagine to do this right now is to load the new content into a second array and then loop to through the second array appending its content to the first on.
i just would like to ask if there is a better way to do this?
kind regards
Patrick