markdown语法

2022-12-02  本文已影响0人  胡儒清

1~6级标题

xxxxx

xxxxx

xxxxx

xxxxx

xxxxx

有序列表

  1. xxxx
  2. xxxx
  3. xxx
  4. xxx

无序列表

链接和图片

百度

image.png

代码块

<script>
    // 变量的声明
    var money;
    console.log(1, money);  // undefined
    // 变量的赋值, =叫做赋值符号
    money = 10000;
    console.log(2,money);
    money = 110;
    console.log(3,money); 
</script>
上一篇 下一篇

猜你喜欢

热点阅读