摘要:<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0">&
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script type="text/javascript" >
var str = "hello world!"
//string类型的变量
document.write(str+'<br>');
document.write(typeof(str));
</script>
</head>
<body>
</body>
</html>
批改老师:天蓬老师批改时间:2019-01-13 10:29:49
老师总结:document.write(typeof(str));, 以后, 直接写到控制台查看吧: console.log(typeof(str));