I have some Group Id's in this format
{
"id": 250795474579271758272221268038464268284,
}
I directly fetch the data from API and then store this data in redux state + localStorage. But it dosent get stored as it looks. It get stored like this;
{
"id": 2.5079547457927174e+38,
}
So problem is that when I make a post request back to backend then this value 2.5079547457927174e+38 as id get posted instead of 250795474579271758272221268038464268284 . I know mathematically it's a same thing. But I want fix this So it dosent change the expression.