renamed
This commit is contained in:
+1
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Tester</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<script>
|
||||
console.log("hello world");
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Tester</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<script src="app.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,7 @@
|
||||
let a = 10; // assign a value of 10 to variable a
|
||||
console.log(a); // This will output 10 into the console
|
||||
/*
|
||||
This is a multi-line
|
||||
Comment
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>JS Tester</title>
|
||||
</head>
|
||||
<body>
|
||||
<script src="myJS.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
// console.log("Laurence");
|
||||
/*
|
||||
This is my comment
|
||||
Laurence Svekis
|
||||
*/
|
||||
Reference in New Issue
Block a user