x
1
2
<html>
3
<body>
4
5
<h2>JavaScript Constants</h2>
6
7
<script>
8
const WEB_URL = "www.closetag.com";
9
document.write("<b>"+ WEB_URL +"<b><br>");
10
11
12
</script>
13
14
</body>
15
</html>
<html>
<body>
<h2>JavaScript Constants</h2>
<script>
const WEB_URL = "www.closetag.com";
document.write("<b>"+ WEB_URL +"<b><br>");
</script>
</body>
</html>