G

Untitled

public
Guest Oct 15, 2024 Never 11
Clone
JavaScript paste1.js 14 lines (11 loc) | 226 Bytes
1
setTimeout(function timeout() {
2
console.log('T');
3
}, 0);
4
5
var p = new Promise(function(resolve, reject) {
6
console.log('F');
7
resolve();
8
});
9
10
p.then(function(){
11
console.log('L');
12
});
13
14
console.log('G');