JSFiddle - React, Tailwind, and code Playground

by Bacher

JavaScript

console.log('A');

var a = new Promise(function(resolve, reject) {
    console.log('B');
    resolve();
});

a.then(function() {
    console.log('D');
});

console.log('C');