This commit is contained in:
Karan 2021-11-25 20:01:00 +05:30 committed by GitHub
parent 5d8dbad5c0
commit 7be5f98ee4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,21 +0,0 @@
<!doctype html>
<html>
<head>
    <title>Complete JavaScript Course</title>
</head>
<body>
<script>
const val = "Bye Bye";
const app = function () {
const val = "Hello World";
function init() {
console.log(val);
}
return {
init: init
};
}();
document.addEventListener('DOMContentLoaded', app.init);
</script>
</body>
</html>