Project 2

This commit is contained in:
Karan
2021-11-24 21:02:23 +05:30
committed by GitHub
parent ead937227a
commit 7a66a5e6be
+13
View File
@@ -0,0 +1,13 @@
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();