Imagine I have an Item that has an array of Items and any of the Items in the Array has an array of Items and so on. So i have an infinite level of Items and i want to know how to get to all of them in node.js. Like this:
    Item1
     /     \
   Item2    Item3
            /    \
          Item4   Item5
Item1 is an array. Item2 and Item3 another array and so on.
 
     
    