new Promise(function (resolve) { console.log('4') resolve() }).then(function () { console.log('6') }) new Promise(function (resolve) { console.log('4') resolve() }).then(function () { ...