Untitled
Anonymous
plain_text
03/10/2023 12:45 PM
416 B
16
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...