How to convert String variable to int in javascript?

末鹿安然 提交于 2019-12-30 10:45:13

问题


What is the correct way to convert value of String variable to int/numeric variable? Why is bcInt still string and why does isNaN return true?

bc=localStorage.getItem('bc');
var bcInt=parseInt(bc,10);
var bcInt2=1;
console.log("bc------------>" +bc +" isNaN:" +isNaN(bc)); //isNaN returns true
console.log("bcInt------------>" +bcInt +" isNaN:" +isNaN(bcInt)); //isNaN returns true

bcInt2// isNaN returns false

回答1:


parseInt returns a number only if you pass it a number as first character.

Examples:

parseInt( 'a', 10 ); // NaN
parseInt( 'a10', 10 ); // NaN
parseInt( '10a', 10 ); // 10
parseInt( '', 10 ); // NaN
parseInt( '10', 10 ); // 10

Also, you may take a look at the + operator if you want to get strings that are only numbers.

+'a'; // NaN
+'a10'; // NaN
+'10a'; // NaN
+''; // 0, that's tricky
+'10'; // 10

Edit: According to your comment, I've tested parseInt:

parseInt( '08-20 19:41:02.880', 10 ); // 8

You're doing something else wrong. parseInt returns everything till it's not a number. If the first isn't a number (or it doesn't find any number), it returns NaN.




回答2:


The answer is that I used localStorage.setItem('bc',JSON.stringify(bc)) and it added double quote to bc because it was in that case already a string and that's why parseInt wasn't working. Value was ""1"".



来源:https://stackoverflow.com/questions/12040769/how-to-convert-string-variable-to-int-in-javascript

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!