chore: format markdown code. (#42)

* format: fix markdown

* update: fix markdown

* update: fix cron problems

* update: delete .markdownlintignore

* update

* chore: add tab -> 4 space

* chore: fix tab -> 2 in the .editorconfig
This commit is contained in:
fw_qaq
2022-11-11 01:51:54 +08:00
committed by GitHub
parent ea80136db3
commit 5701da6e5b
88 changed files with 1075 additions and 1126 deletions

View File

@ -54,7 +54,6 @@ count = 10;
console.log(count); // => 10
```
### const 关键字
```javascript
@ -238,11 +237,9 @@ parseFloat();
parseInt();
```
JavaScript 条件
----
### 操作符
<!--rehype:wrap-class=row-span-3-->
@ -273,7 +270,7 @@ true && false; // false
1 === '1' // false
```
#### 逻辑运算符 !
#### 逻辑运算符
```javascript
let lateToWork = true;
@ -727,7 +724,6 @@ numbers.concat(newFirstNumber)
如果你想避免改变你的原始数组,你可以使用 concat。
### 方法 .splice()
```javascript
@ -1295,7 +1291,6 @@ class Song {
}
```
JavaScript Modules
----
<!--rehype:body-class=cols-2-->
@ -1639,7 +1634,7 @@ msg(); // Message: Hello World! <-- 2 秒后
JavaScript 请求
----
### JSON
### JSON
```JS
const jsonObj = {
@ -1771,4 +1766,4 @@ const getSuggestions = async () => {
console.log(error)
}
}
```
```