JavaScript typeof, null, and undefined
##typeof operator
You can use the typeof operator to detect the data type of a variable.<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <p> typeof 操作符返回变量或表达式的类型。</p> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = typeof "john" + "<br>" + typeof 3.14 + "<br>" + typeof false + "<br>" + typeof [1,2,3,4] + "<br>" + typeof {name:'john', age:34}; </script> </body> </html>Next Section