This commit is contained in:
Karan
2021-11-25 20:25:10 +05:30
parent 67969b4bce
commit 65c4b167af
8 changed files with 122 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<title>Tester</title>
</head>
<body>
<script>
console.log("hello world");
</script>
</body>
</html>
+12
View File
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<title>Tester</title>
</head>
<body>
<script src="app.js"></script>
</body>
</html>
+7
View File
@@ -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
*/
+15
View File
@@ -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
*/