js几种for循环的几种用法第一种:普通for循环for(j = 0 j < arr.length j++) { }第二种:优化版for循环for(j = 0,len=arr.length j < len j++) { }第三种2023-03-05JavaScript190