I would like to create a parser for an array of objects, and am new to this library. The objects would be in this format: ``` [{ a:0, b:1, c:'test' }] ``` I have examples of the object portion, but how would I handle the array portion, particularly if the array size could be dynamic?
I would like to create a parser for an array of objects, and am new to this library. The objects would be in this format:
I have examples of the object portion, but how would I handle the array portion, particularly if the array size could be dynamic?