Untitled
Anonymous
plain_text
04/28/2023 12:24 PM
416 B
17
Indexable
(function () {
console.log('this is the start');
setTimeout(function cb() {
console.log('this is a msg from call back');
});
console.log('this is just a message');
setTimeout(function cb1() {
console.log('this is a msg from call back1');
}, 0);
console.log('this is the end');
})();Editor is loading...