And you might see some charts down below...
{ '0':12, '2':23, '3':34, ... }
{ 0:34, 1q: 53, 24: 97, ... }
{ '0': {x:1, y:1}, 'doesnt_matter': {x:2, y:3}, 'q_34': {x:3, ... }}
{ '0': {x:1, y:1, z:2}, 'doesnt_matter': {x:2, y:3, z:8}, 'q_34': {x:3, ... }}
[ '0', 34, '51', ... ]
[ [0,2], [2,34], [3, 65], ... ] --converts to-- [ {x:0, y:2}, {x:2, y: 34}, ... ]
[ [0,2], [2,34], [3,65], ... ] --converts to-- [ {x:0, y:0}, {x:1, y:2} ... ] and [ {x:0, y:2}, {x:1, y:34}, ... ]
[ [0,2,11], [2,34,5], [3,65,30], ... ] --converts to-- [ {x:0, y:2, z:11}, {x:1, y:34, z:3}, ... ]