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.pop(); Logger.log(array); }
この機能がやること 配列を用意して 末尾の要素を削除して 配列をログに出す
Googleフォームには回答を判定するクイズモードがあります 今回はそのクイズモードで回答の判定とフィードバックについて書いていきます 「クイズモード」の表記: 日本語の表記は「テストにする」ですが 英語の表記は「Make this a quiz」となっています この記事ではでは...