运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Object Constructors</h1> <p id="demo"></p> <script> // Display the type of all document.getElementById("demo").innerHTML = '<p>The typeof "" is ' + typeof "" + '</p>' + '<p>The typeof 10 is ' + typeof 10 + '</p>' + '<p>The typeof false is ' + typeof false + '</p>' + '<p>The typeof {} is ' + typeof {} + '</p>' + '<p>The typeof [] is ' + typeof [] + '</p>' + '<p>The typeof /()/ is ' + typeof /()/ + '</p>' + '<p>The typeof function(){} is ' + typeof function(){} + '</p>'; </script> </body> </html>