1.冒號後面,逗號後面要有空格,還有通常if語句大括號前面後面也都要有空格javascript
2.使用for (let i = 0; i < arr.length; i++) {}循環數組報錯,使用for (const i of arr) {}java
for (const i of arr) { console.log(i, arr) // i表示數組的每一項 }
3.定義數組,用any[]代替Array<any>數組
4.引號要用單引號code