Raw JavaScript Implementation

top
string

Places to the top, raw implemented JS code that is executed.

end
string

Places to the end, raw implemented JS code that is executed.

async
booelan

Changes between asynchronous and synchronized execution.

/* Top Level Implemented code with async */
(async () => {
  <top_field>
});

/* Top Level Implemented code with sync */
(() => {
  <top_field>
});

This goes for end as well, this field connects to the both fields: top,end