<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script>
// 这是一个输入框
prompt('请输入你的年龄');
// alert弹出警示框 输出的是 展示给用户的
alert('计算的结果是');
// console 控制台输出 给程序猿测试用的
console.log('我是程序猿能看到的');
</script>
</head>
<body>
</body>
</html>