Added app.js, index.html

module1_writing_modular_code_with_functions
jason.zhu 2021-05-11 10:24:54 +10:00
parent c774c0be13
commit cdbfc9f1a1
2 changed files with 15 additions and 0 deletions

1
app.js 100644
View File

@ -0,0 +1 @@
console.log("hello");

14
index.html 100644
View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>JavaScript Demo</title>
</head>
<body>
<h1>JavaScript Demo</h1>
<script src="app.js"></script>
</body>
</html>