「Google Apps Script」do while文を実行するサンプル
構文
do {
処理コード
} while (条件式);
条件がtrueの間、処理を繰り返します。
条件がfalseの場合、処理を終了します。
使用例
function myFunction() { let i = 23; do { console.log(i); i++; } while (i < 25); }
実行結果
23
24
Coding Changes the World
構文
do {
処理コード
} while (条件式);
条件がtrueの間、処理を繰り返します。
条件がfalseの場合、処理を終了します。
使用例
function myFunction() { let i = 23; do { console.log(i); i++; } while (i < 25); }
実行結果
23
24