JS数组的遍历方法有两种:
第一种:一般的for循环,例如:
1 2 3 4 |
|
输出的结果:fitst,second,third
第一种:用for...in 这种遍历的方式,例如:
1 2 3 4 |
|
输出的结果:fitst,second,third
时间: 2024-11-06 03:45:18
JS数组的遍历方法有两种:
第一种:一般的for循环,例如:
1 2 3 4 |
|
输出的结果:fitst,second,third
第一种:用for...in 这种遍历的方式,例如:
1 2 3 4 |
|
输出的结果:fitst,second,third