When converting a large string to a number, I noticed there is round after the 15th digit. Is there a way to convert a string to a number to in JS without rounding, regardless of the length?
Number("9223372036854775807")
// returns 9223372036854776000
+"9223372036854775807"
// returns 9223372036854776000
"9223372036854775807"*1
// returns 9223372036854776000