Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I just noticed that:

//IN CHROME JS CONSOLE
parseInt("03010123"); //prints: 3010123

//IN NODE.JS
parseInt("03010123"); //prints: 790611

Since both are based on V8, why same operation yielding different results???

like image 529
Renato Gama Avatar asked Jun 02 '13 06:06

Renato Gama


People also ask

Should I use parseInt or number?

Number() converts the type whereas parseInt parses the value of input. As you see, parseInt will parse up to the first non-digit character. On the other hand, Number will try to convert the entire string.

What is the second argument of parseInt?

The parseInt function takes in at most two arguments. The first argument is a string containing a number, and the second argument is a radix that determines the numeral system of the number present in the string. The radix is an optional parameter.


1 Answers

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);
like image 93
Adam Rackis Avatar answered Sep 23 '22 13:09

Adam Rackis