Why am I getting weird result using parseInt in node.js? (different result from chrome js console)

18,087

Undefined behavior occurs when the string being passed to parseInt has a leading 0, and you leave off the radix parameter.

An integer that represents the radix of the above mentioned string. Always specify this parameter to eliminate reader confusion and to guarantee predictable behavior. Different implementations produce different results when a radix is not specified.

Some browsers default to base 8, and some to base 10. I'm not sure what the docs say about Node, but clearly it's assuming base 8, since 3010123 in base 8 is 790611 in base 10.

You'll want to use:

parseInt("03010123", 10);
Share:
18,087

Related videos on Youtube

Renato Gama
Author by

Renato Gama

AWS Certified Solutions Architect - Associate AWS Certified Developer - Associate Node.js developer

Updated on September 19, 2022

Comments