For example:
Go back-end sends:
map{"1": 0, "2": 1}
JavaScript front-end uses fetch to get data from back-end:
{"2": 1, "1": 0, "3": 1}
Is it possible that front-end got data which has one (or two) more element accidentally?
For example:
Go back-end sends:
map{"1": 0, "2": 1}
JavaScript front-end uses fetch to get data from back-end:
{"2": 1, "1": 0, "3": 1}
Is it possible that front-end got data which has one (or two) more element accidentally?