Skip to content

Commit 8c9e905

Browse files
committed
callback function code snippet #3
1 parent 23c53bc commit 8c9e905

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

All Lessons/callbackfunc.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
setTimeout(function () {
3+
console.log("timer");
4+
}, 5000);
5+
6+
function x(y){
7+
console.log("x");
8+
y();
9+
}
10+
11+
x(function y(){
12+
// this func is called callback
13+
console.log("y");
14+
});

0 commit comments

Comments
 (0)