2021-11-30 18:16:23 +05:30

14 lines
246 B
JavaScript

const one = ()=> console.log('one');
const two = ()=> console.log('two');
const three = () =>{
console.log('three');
one();
two();
}
const four = () =>{
console.log('four');
setTimeout(one,0);
three();
}
four();