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