I am getting a json response back with my data but when I am trying to use one of the values (number) the response is converting to scientific notation. I never encountered something like this so I am just going to post what is happening.
When I use console.log(response)
the value looks like that doctorid":2015031216033174968087
and when I am trying to use the doctorid the value becomes 2.015031216033175e+21
. This happens even if I output the value in the console by using console.log(response.doctorid)
. Any idea what might be causing such a behavior?