How can I convert a long integer (as a string) to a numerical format in Javascript without javascript rounding it?
var ThisInt = \'9223372036854775808\' aler
Have you tried using the Number class? var num = new Number(parseFloat(ThisInt))
var num = new Number(parseFloat(ThisInt))