Слияние кода завершено, страница обновится автоматически
setTimeout(function () {
console.log('setTimeout');
})
let a = new Promise(function (resolve, reject) {
console.log('promise');
resolve()
}).then(function () {
console.log('then');
})
// a.then(() => {
// console.log(1)
// });
a.then()
console.log('консоль');
// promise консоль then setTimeout