我正在从本地存储中获取一个存储为字符串的数字。
const numb = localstorage.getItem('value');
现在我想将其转换为数字。
我该怎么做到。
示例
"5"
至5
答案 0 :(得分:0)
这将为您服务
const numb = parse.Int(localstorage.getItem('value'));
答案 1 :(得分:0)
为了将字符串更改为角度数字,我们可以在字符串之前使用“ +”将其转换为字符串。例如,我们有:
let x = "32";
let y = +x;
console.log(typeof y); //number
console.log(typeof x); //string
答案 2 :(得分:0)
您可以使用parseInt()
实现这一目标。
parseInt(numb)
或者您也可以使用+
运算符
+numb