7

開発者ページで完全な構文仕様を見つけることができません。拡張された for ループがあるかどうか本当に疑問に思っています...

https://developers.google.com/apps-script/

デフォルト サービスが表示されますが、使用できる制御フロー構文が定義されていません。正確にはJavaScriptの特定のバージョンですか?

4

2 に答える 2

9

The GAS is not a precise version of JavaScript. It supports many features of JavaScript 1.8.5 like Object.keys, Object.isExtensible, etc. but on the other hand it does not support the keywords yield and let introduced in JavaScript 1.7. Another features which the GAS supports are the native JSON class and String.trim function introduced in JavaScript 1.8.1. Also the GAS supports the E4X extension.

The GAS documentation is not complete now and many features are discoverable experimentally.

于 2012-09-05T11:20:00.413 に答える
5

Apps Script は正確には JavaScript バージョン 1.6 です

于 2012-09-05T13:07:13.563 に答える