x
1
2
<html>
3
<body>
4
5
<h2>JavaScript Constants</h2>
6
7
8
<script>
9
const FIRST_NAME = "Ahmed";
10
const LAST_NAME = "Hamza";
11
const FULL_NAME = FIRST_NAME + " " + LAST_NAME ;
12
document.write("<b> Full Name Is : "+ FULL_NAME +"<b><br>");
13
14
</script>
15
16
</body>
17
</html>