JS的基本语法
js的三种输出方式
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Titletitle>
head>
<body>
<script>
// 三种输出方法
console.log("Hello world") // 在控制台中输出
document.write("Hello world") // 直接输出到文档(网页)中
// alert("hello world") // 警告,弹出框
script>
body>
html>