Simple event-loop test

Run Settings
LanguageJavaScript
Language Version
Run Command
process.nextTick(() => { console.log('next tick'); }); new Promise(() => { console.log(123); return 123; }).then(() => { console.log('done'); }); async function test() { console.log('async start'); await test2(); console.log('async end'); return 'await'; } async function test2() { console.log('async 2 start'); return 'wait for me'; } test();
Editor Settings
Theme
Key bindings
Full width
Lines