I have an object array with n dimensions by n is unknown. Here is the example of data :
Data = [{"value":{"Id":"1","Text":"abcd","Parent":""},"children":[{"value":{"Id":"2","Text":"abcd","Parent":"1"},"children":[{"value":{"Id":"3","Text":"abcd","Parent":"1"},"children":[{"value":...
I'd like to travel inside all this array to read the object data. How could I do that in javascript?