<!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>
<script>
console.log("log基本样式");
console.info("info基本样式");
console.warn("warn警告样式");
console.error("error错误样式");
console.log(
"%c添加自定义样式",
"color:white;background-color:#1e9fff;border-radius:3px;padding:3px"
);
let a = 100;
let b = 200;
let c = 300;
console.log({ a, b, c });
console.table([a, b, c]);
console.time("check");
console.timeEnd("check");
console.dir(document);
</script>
</head>
<body></body>
</html>