I share this blog with my thoughts and creations from my daily programming, knowledge, and technology updates.
function myFunction() { var array = ["a", "b", "c"]; array.shift(); Logger.log(array); }
この機能がやること 配列を用意して 先頭の要素を削除して 配列をログに出す