First of all, you really don't need parseInt() in most cases. It's algorithm is full of various quirks, the 0 prefix is even forbidden by the specification ("the specification of the function parseInt no longer allows implementations to treat Strings beginning with a 0 character as octal values."), but it will take a while to change browser behaviors (even if I'm sure that nobody does use octals intentionally in parseInt()). And Internet Explorer 6 will never change (the Internet Explorer 9 however removed support for octals in parseInt()). The algorithm used by it usually does more than you want from it. In certain cases, it's bad idea.
- First argument is converted to string if it isn't already.
- Trim the number, so
' 4' becomes '4'.
- Check if string begins with
- or + and remove this character. If it was - make output negative.
- Convert radix to integer.
- If radix is
0 or NaN try to guess radix. It means looking (case-insensitive) for 0x and (non-standard) 0. If prefix wasn't found, 10 is used (and this is what you most likely what).
- If radix is
16 strip 0x from the beginning if it exists.
- Find the first character which is not in range of radix.
- If there is nothing before first character which wasn't in range of radix, return
NaN.
Convert number to decimal until the first character which is not in range.
For example, parseInt('012z', 27) gives 0 * Math.pow(27, 2) + 1 * Math.pow(27, 1) + 2 * Math.pow(27, 0).
The algorithm itself is not really quick, but performance varies (optimizations make wonders). I've put test on JSPerf and the results are interesting. + and ~~ are fastest with exception for Chrome where parseFloat() is somehow way faster than other options (2 to 5 times faster than other options, where + is actually 5 times slower). In Firefox, ~~ test is very fast - in certain cases, I've got Infinity cycles.
The other thing is correctness. parseInt(), ~~ and parseFloat() make errors silent. In case of parseInt() and parseFloat() characters are ignored after invalid character - you can call it a feature (in most cases it's anti-feature for me, just like switch statements fallthrough) and if you need it, use one of those. In case of ~~ it means returning 0, so be careful.
In certain cases, parseInt() might hurt you. Badly. For example, if number is so big that it is written in exponential notation. Use Math methods then.
parseInt(2e30); // will return 2
Anyways, at end I want to make a list when of methods to convert strings to numbers (both integers and floats). They have various usages and you may be interested what method to use. In most cases, the simplest one is +number method, use it if you can. Whatever you do (except for first method), all should give correct result.
parseInt('08', 10); // 8
+'08'; // 8
~~'08'; // 8
parseFloat('08'); // 8
Number('08'); // 8
new Number('08'); // 8... I meant Object container for 8
Math.ceil('08'); // 8
parseInt(number)
Don't use. Simple as that. Either use parseInt(number, 10) or this workaround which will magically fix parseInt function. Please note that this workaround will not work in JSLint. Please don't complain about it.
(function () {
"use strict";
var oldParseInt = parseInt;
// Don't use function parseInt() {}. It will make local variable.
parseInt = function (number, radix) {
return oldParseInt(number, radix || 10);
};
}());
parseInt(number, radix)
parseInt converts argument to numbers using mentioned above algorithm. Avoid using it on large integers as it can do incorrect results in cases like parseInt(2e30). Also, never ever give it as argument to Array.prototype.map or Underscore.js variation of it as you may get weird results (try ['1', '2', '3'].map(parseInt) if you want (for explanation, replace parseInt with console.log)).
Use it when either:
- When you need to read data written in different radix.
- You need to ignore errors (for example change
123px to 123)
Otherwise use other more safe methods (if you need integer, use Math.floor instead).
+number
+ prefix (+number) converts number to float. In case of error it returns NaN which you can compare by either isNaN() or just by number !== number (it should return true only for NaN). It's very fast in Opera.
Use it unless you want specific features of other types.
~~number
~~ is a hack which uses ~ two times on the integer. As ~ bitwise operation can be only done for integers, the number is automatically converted. Most browsers have optimizations for this case. As bitwise operations only work below Math.pow(2, 32) never use this method with big numbers. It's blazingly fast on SpiderMonkey engine.
Use it when either:
- You're writing code where performance is important for SpiderMonkey (like FireFox plugins) and you don't need error detection.
- You need integer and care resulting JavaScript size.
parseFloat(number)
parseFloat() works like + with the one exception - it processes number until first invalid character instead of returning NaN. It's very fast (but not as fast as ~~ on Firefox) in V8. Unlike parseInt variation, it should be safe with Array.prototype.map.
Use it when either:
- You're writing performance-critical code for Node.js or you're writing Google Chrome plugins (V8).
- You need to ignore errors (for example change
42.13px to 42.13)
Number(number)
Avoid it. It works just like + prefix and is usually slower. The only usage where it could be useful is callback for Array.prototype.map - you cannot use + as callback.
new Number(number)
Use it when you need to confuse everybody with 0 being truthy value and having typeof of 'number'. Seriously, don't.
Math methods, like Math.ceil(number)
Use them when you need integer as it's more safe than parseInt() by not ignoring unexpected characters. Please note that technically it involves long conversion - string → float → integer → float (numbers in JavaScript are floats) - but most browser have optimizations for it, so usually it's not that noticeable. It's also safe with Array.prototype.map.
10(decimal) unless the number to parse is prefixed with0x, e.g.0xFF, in which case the base parameter defaults to 16. Hopefully, one day, this issue will be a distant memory. – Andy E May 9 '11 at 10:02+'08' === 8? True! Maybe you really needparseIntfor your real code, but not for the above. – kojiro Dec 24 '11 at 14:04Number('08')– user539484 Jan 6 at 20:01