update the code style

This commit is contained in:
steak-zhuo 2023-01-15 13:08:00 +08:00
parent 6941a2b34f
commit 9395674e16

View file

@ -92,9 +92,9 @@ comments: true
```typescript title=""
/* 使用多种「基本数据类型」来初始化「数组」 */
const numbers: number[] = []
const characters: string[] = []
const booleans: boolean[] = []
const numbers: number[] = [];
const characters: string[] = [];
const booleans: boolean[] = [];
```
=== "C"