JavaScript
概述
JavaScript简称js,用于用户与浏览器行为交互、浏览器与服务器的数据交互
ECMAScript
js的版本,是js语言的标准。
例子
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>hello</h1>
<script>//写在body的末尾
//js语句结尾加不加;都行
alert("123456");//弹窗
console.log("hello world");//在F12的console控制台中打印
</script>
</body>
</html>