-
Notifications
You must be signed in to change notification settings - Fork 0
/
baeyeol.html
36 lines (34 loc) · 892 Bytes
/
baeyeol.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JkY JS</title>
</head>
<body>
<h1>Array</h1>
<h2>Syntax</h2>
<script>
document.write(6*4);
var legend = ["Frankinsense", "Butterflies in my throat"]
</script>
<h2>array!</h2>
<script>
document.write(legend[0]);
document.write(legend[1]);
</script>
<h1>JY HTML!</h1>
6 * 4
<script>
legend.push('gom3mari');
</script>
<h2>write!</h2>
<script>
document.write(legend[2]);
var i = 0;
while(i < legend.length){
document.write('<li>'<a href='https://www.youtube.com/watch?v=0QvG86vzmpQ'legend[i]+'</li>');
i = i + 1;
}
</script>
</body>
</html>