Skip to content

Commit 4794807

Browse files
committed
1 parent 5ecf228 commit 4794807

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

All Lessons/eventListener.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
3+
function formingClosure(){
4+
let count = 0;
5+
document.getElementById("clickMe").addEventListener("click", function xyz() {
6+
console.log("Button Clicked : ", ++count);
7+
});
8+
}
9+
formingClosure();

0 commit comments

Comments
 (0)