<script>
// 单行注释
ctrl+/
/* 我是多行注释
我可以换行使用
内部的代码都不会解析 */
shift+alt+a
// 结束符 用分号(;)表示,可以写,可以不写
alert(1);
alert(2);
alert(3);
alert(4);
</script>