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