執行 ❯
建立您
自己的
網站
×
改變方向
儲存程式碼
更改主題,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>JavaScript Type Conversions</h2> <p>Converting the string "0" to other types:</p> <p id="demo" style="font-family:courier"></p> <script> let x = "0"; document.getElementById("demo").innerHTML = "Number : " + Number(x) + "<br>" + "String : " + String(x) + "<br>" + "Boolean: " + Boolean(x); </script> </body> </html>