On what version of javascript does netsuite currently run SuiteScripts?
This is my understanding: SuiteScript is a NetSuite scripting API that runs on a javascript engine. Javascript has multiple versions (E.G. ES6 and ES7). Which version does this engine use? Or, maybe I should be asking "What javascript engine does SuiteScript run on?". Then I could look up which version of javascript that engine runs on?
Let me give a practical example of what I'm getting at. In javascript version ECMAScript 7, you can declare an async function, but you cannot in ECMAScript 6. Can I declare an "async function" in SuiteScript? (arbitrary example)