GAS_よく使用する処理まとめ(コピペ用)
For文
1 2 3 4 5 6 7 8 9 10 11 |
/************ * For文 ************/ // 0-4までの5回 for(var i = 0; i < 5; i++){ console.log("i = " + i); } |
while文
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/************ * While文 ************/ var w_cnt = 5; // 5-1までの5回 while(w_cnt > 0){ console.log("w_cnt = " + w_cnt); // デクリメント --w_cnt; } |
If文 [crayon-670d0304a1e291442637…