How to avoid rounding of a long value on client side? How to avoid rounding of a long value on client side? json json

How to avoid rounding of a long value on client side?


It is not related to Playframework it is a browser issue. Open the developer console in your browser and try this -

var c = 3942015886343226874;console.log(c);

This will print - 3942015886343227000

because of number limit in JavaScript.

Its better to use String in case of UUID.