When I put this code into express(using app.get) to feed it to the client side:
<script>
console.log(513181088768720987)
<script>
The output should be 513181088768720987, however, it changes the output to 513181088768720960. Also, if I inspect the code I can still see the console.log with the value in it's original state. If I attempt to initialize socket.io and send the value to my server(as a variable) the server receives the variable the same way the console logs it(incorrectly). Any Idea why this happens?
Im using chrome as my browser, and node.js with express to feed the code from a server to the client side