代码示例:(标识:eg_js_console)
<!DOCTYPE html>
<html>
<body>

<h1>我的第一张网页</h1>

<p>使用F12在浏览器(Chrome、IE、Firefox)中激活调试,然后在调试器菜单中选择“控制台”。</p>

<script>
a = 5;
b = 6;
c = a + b;
console.log(c);
</script>

</body>
</html>
运行结果: