摘要:
https://github.com/smallinsect/MyJS/blob/main/TypeScript/define.ts 1 // a是undefined表示变量未定义,理解为变量不存在。 2 // a=null表示变量值为空值,理解为变量存在但没有值。 3 4 // 变量a旁边的问号? 阅读全文
摘要:
let arr: string[] = ["小昆虫1", "小昆虫2", "小昆虫3"]; // 遍历数组值 console.log("遍历数组值 "); for (let item of arr) { console.log(item); } // 遍历数组索引 console.log("遍历数组 阅读全文