为了账号安全,请及时绑定邮箱和手机立即绑定

在JavaScript中将String转换为Number的最快方法是什么?

在JavaScript中将String转换为Number的最快方法是什么?

慕斯709654 2019-11-27 10:26:10
任何数字,就是数字。字符串看起来像一个数字,它是数字。其他所有内容,都归为NaN。'a' => NaN'1' => 11 => 1
查看完整描述

3 回答

?
慕村9548890

TA贡献1884条经验 获得超4个赞

这是简单的方法: var num = Number(str); 在此示例中,str是包含字符串的变量。您可以对其进行测试并查看其工作方式:Google chrome开发人员工具,然后转到控制台并粘贴以下代码。阅读评论以更好地了解转换是如何完成的。


// Here Im creating my variable as a string

var str = "258";



// here im printing the string variable: str

console.log ( str );



// here Im using typeof , this tells me that the variable str is the type: string

console.log ("The variable str is type: " + typeof str);



// here is where the conversion happens

// Number will take the string in the parentesis and transform it to a variable num as type: number

var num = Number(str);

console.log ("The variable num is type: " + typeof num);


查看完整回答
反对 回复 2019-11-27
  • 3 回答
  • 0 关注
  • 684 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信