📌  相关文章
📜  JS 将字符串转换为数字 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:47.328000             🧑  作者: Mango

代码示例3
const three = "3";
typeof(three);
// 'string'

const threeInt = parseInt(three, 10);
typeof(threeInt);
// 'number'