I've an annoying problem in JavaScript.
parseInt(1 / 0, 19)
18
Why does parseInt return 18?
|
I've an annoying problem in JavaScript.
Why does |
||||
| show 17 more comments |
|
The result of
Here are the digits in base 19 along with their decimal values:
What happens next is that Therefore it behaves as if you called |
|||||||||||||||||||||
|
|
Here's the sequence of events:
Note that you'd get a result for any base |
|||||||||||||||
|
|
To add to the above answers: parseInt is intended to parse strings into numbers (the clue is in the name). In your situation, you don't want to do any parsing at all since 1/0 is already a number, so it's a strange choice of function. If you have a number (which you do) and want to convert it to a particular base, you should use toString with a radix instead.
|
|||
|
|
|
To add to the above answers
Within base 19 numbers So, if you write Now, if you write Similarly, i.e.
|
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
parseInt(0 / 0, 24)yet? – Ray Toal Jul 6 '12 at 3:06