1~6级标题
xxxxx
xxxxx
xxxxx
xxxxx
xxxxx
有序列表
- xxxx
- xxxx
- xxx
- xxx
无序列表
- xxxx
- xxxx
- xxxx
- xxxx
链接和图片
![](https://img.haomeiwen.com/i7177443/d3ef80225b37e13f.png)
代码块
<script>
// 变量的声明
var money;
console.log(1, money); // undefined
// 变量的赋值, =叫做赋值符号
money = 10000;
console.log(2,money);
money = 110;
console.log(3,money);
</script>
网友评论