GAS for 반복문을 간단하게 코딩해 본다.


function for_next() {

  for(var i = 1; i<11; i++)

  {

    Logger.log(i);

  }


}



실행결과는 아래와 같다.




+ Recent posts