I'm building a plugin in Adobe XD. Can I use ES2015+ (ES6) features? For example, template literals, let , const, Arrow functions, asynchronous functions ( async / await )?
I'm building a plugin in Adobe XD. Can I use ES2015+ (ES6) features? For example, template literals, let , const, Arrow functions, asynchronous functions ( async / await )?
XD plugin APIs support most of ES2015 and beyond. You can use features such as:
let , const )... )async / await )You can also use ES5 JavaScript features as well.
The XD plugin API docs have a page on JavaScript support.