js 原生的 for 语法
1.
for(let i=0,i<xxxx.legth,i++){}
2.
for 语法 2: index 代表下标
for(let index in data){console.log("测试 for 循环")
let user = data[index];
alert(user.name);
}
3.
for 语法 3: user 以后循环遍历的对象
for(let user of data){console.log("for 循环测试:"+user.name);
}