feat: add jest cheatsheet.

This commit is contained in:
jaywcjlove
2022-09-27 23:09:51 +08:00
parent b54ea24b2e
commit 69f536eb33
12 changed files with 1019 additions and 27 deletions

View File

@ -75,7 +75,6 @@ var a;
console.log(a); // => undefined
```
### 字符串
```javascript
@ -95,7 +94,6 @@ console.log(single.length);
10 % 5 = 0 // 取模 Modulo
```
### 注释
```javascript