google-apps-script スクリプト ファイルで「use strict」を設定することは可能ですか? これをテストする関数を作成しました
function a () { //logs - function a
"use strict";
Logger.log(arguments.callee);
}
厳密モードが適用されている場合、このステートメントは TypeError をスローすると思います。
google-apps-script スクリプト ファイルで「use strict」を設定することは可能ですか? これをテストする関数を作成しました
function a () { //logs - function a
"use strict";
Logger.log(arguments.callee);
}
厳密モードが適用されている場合、このステートメントは TypeError をスローすると思います。