Has anyone encountered an issue where the parsejson method when it parses out a Json integer that is a negative value it forces it as a positive value? so for example i have this json string
{test: -1} but when i run the parse json on it the value of test = 1 instead of -1?
the first print out works and displays the right json with the negative value but after I parse and get the attribute test from the json array it returns as 1