在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
let arr: string[] = ["小昆虫1", "小昆虫2", "小昆虫3"]; // 遍历数组值 console.log("遍历数组值========================="); for (let item of arr) { console.log(item); } // 遍历数组索引 console.log("遍历数组索引========================="); for (let item in arr) { console.log(item); } // 遍历数组索引和值 console.log("遍历数组索引和值========================="); for (let item in arr) { console.log(item, arr[item]); } https://github.com/smallinsect/MyJS/blob/main/TypeScript/for.ts
|
请发表评论