Struggling with parsing a list of Objects, for example:
After running the code
JSON.parse("[{},{},{},{},{}]");
The result is as follows:
0: Object 1: Object 2: Object 3: Object 4: Object 5: Object
Expecting an array of 5 objects like this: [Object,Object,Object,Object,Object]
However, when looping through the parsed object, unwanted numbers appear. Any suggestions on how to remove these unwanted keys?