We use Java at the backend and of course Javascript for frontend. When serializing, in Java we should
String dataRaw = "42"; int objectId = Integer.parseInt(dataRaw);
dataRaw = "42"; var objectid = +dataRaw;
We use Java at the backend and of course Javascript for frontend. When serializing, in Java we should
Meanwhile, in JS, it is fairly simple: