Untitled
Anonymous
plain_text
03/09/2023 12:25 PM
416 B
22
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...