源代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>享学课堂</title> </head> <body> <h1>我的第一个web页面</h1> <p> 激活你的浏览器(Chrome、IE、Firefox)按F12,在调试菜单中选择“Console” </p> <script> a = 5; b = 6; c = a + b; console.log(c); </script> </body> </html>
运行结果