Why does Javascript’s parseInt return NaN for normal-looking numeric strings?
So I have the JSON below, as an example: [{"x":"12","y":"−67"},{"x":"12","y":"−68"},{"x":"13","y":"−70"}] After I parse it into an object, using JSON.parse, I end up with an array of objects. So far so good. But when I try to parse those "x" and…