Skip to content

Commit 0436ed9

Browse files
committed
Playground added
1 parent 2b55788 commit 0436ed9

2 files changed

Lines changed: 40 additions & 0 deletions

File tree

playground_m/my-running-js.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
6+
<title>Document</title>
7+
</head>
8+
<body>
9+
<p>Hey</p>
10+
11+
12+
<script>
13+
console.log("hey");
14+
</script>
15+
<script src="./some.js">
16+
</script>
17+
18+
</body>
19+
20+
21+
</html>

playground_m/variables.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
<title>Document</title>
8+
</head>
9+
<body>
10+
<script>
11+
var first = 'mark'; //variable
12+
let age = 300;
13+
const cool = true;
14+
console.log(first);
15+
console.log(age);
16+
console.log(cool);
17+
</script>
18+
</body>
19+
</html>

0 commit comments

Comments
 (0)