各種迴圈遍歷

2022-03-22 02:18:09 字數 1151 閱讀 4456

一、for迴圈

1

(function() ;

8 console.log('

demo1arr[

'+ i +'

]:' +demo1arr[i]); 9

}10 })();

⚠️:關於for迴圈,有以下幾點需要注意

二、for-in

1

(function() ;

8 console.log('

demoarr[

'+ i +'

]:' +demoarr[i]); 9

}10 console.log('

-------------');

11 })();

⚠️:關於for-in迴圈,有以下幾點需要注意

1  function res() ; 8

console.log(item, demoarr[item]); 9

}10 console.log('

desc

', '

function res

'); //

不會執行

11 }

三、for-of(需要es6支援)

for

(let value of arr) );

四、foreach(func)

demoarr.foreach(function(arg) {})

1

demoarr.foreach(function(val, index) ;

7console.log(val, index);

8 })

⚠️:具體有以下需要注意的地方

1 

var newarr =;

2demoarr.foreach(function(val, index) , newarr)

五、arr.map(function(n));

arr.map(function(n));
六、效能對比

各種遍歷用法

4 普通屬性 public string execute 5 自定義物件 public string execute 6 list 普通屬性 public string execute 或者 6 list 自定義物件屬性 public string execute 或者 7 陣列 普通屬性 publ...

各種遍歷用法

4 普通屬性 public string execute 5 自定義物件 public string execute 6 list 普通屬性 public string execute 或者 6 list 自定義物件屬性 public string execute 或者 7 陣列 普通屬性 publ...

SQL 迴圈遍歷

一 遍歷 資料表 select hid into temp from md sheettemplate where sheetstateid 1 declare hid varchar 50 while exists select hid from temp 遍歷臨時表 begin select t...