Skip to main content

What versions of Camunda and JavaScript are used in our Workflow/BPA? For example, one of my colleagues has noticed that the findIndex() method is not supported, while indexOf() works fine. Additionally, using let as an alternative to var doesn't seem to work, and const is not supported either.

Camunda with current Java version uses Nashorn JavaScript engine, which fully supports ECMAScript 5.1 and offers partial support for ECMAScript 6. Advanced ES6 features like let/const scoping, Promise, and modules are not fully supported.


Reply