执行下面的代码,将字符串类型强制显式转换为数值类型。
let str = '233'; console.log(str, typeof str); console.log(Number(str), typeof Number(str));