运行 ❯
获取您的
自己
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到空间
<!DOCTYPE html> <html> <body> <p>Converting a numeric string to other types:</p> <p id="demo" style="font-family:courier"></p> <script> var x = "20"; document.getElementById("demo").innerHTML = "Number : " + Number(x) + "<br>" + "String : " + String(x) + "<br>" + "Boolean: " + Boolean(x); </script> </body> </html>