Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

can u help me? why if i use parseInt javascript function for special character number '08' and '09' return is zero for all version firefox...?

  • 5 Antworten
  • 2 haben dieses Problem
  • 1 Aufruf
  • Letzte Antwort von cor-el

more options

var n = '08'; var r = parseInt(n); // r is zero not 8

var n = '08'; var r = parseInt(n); // r is zero not 8

Ausgewählte Lösung

You need to specify the number base (10).
If not then Firefox might think that it is an octal number and in that case 8 and 9 are invalid.

var n = '08'; var r = parseInt(n,10); // r is 8 
alert(r);
Diese Antwort im Kontext lesen 👍 0

Alle Antworten (5)

more options

Ausgewählte Lösung

You need to specify the number base (10).
If not then Firefox might think that it is an octal number and in that case 8 and 9 are invalid.

var n = '08'; var r = parseInt(n,10); // r is 8 
alert(r);

Geändert am von cor-el

more options

thanks for the reply...

can u set default base number in firefox is 10, because other web browser if i parseInt('08') result in 8 n many beginner web developer think parseInt('08') is 8... just a suggestion...

thx again...

more options

No, that is not possible.
The result of parsing an integer with leading zeros can be unpredictable and it is always best to specify the number base anyway to make clear what you mean.

more options

thank's...

more options

You're welcome.