x
1
2
<html>
3
<body>
4
5
<h2>JavaScript variables</h2>
6
7
8
<script>
9
var age = 22;
10
var username = "closetag";
11
var myName = "Ahmed Aly";
12
var color = "blue";
13
var user_Name = "Mohamed Adly";
14
var password = 258622;
15
var email = "info@closetag.com";
16
var emailAddress = "info2@closetag.com";
17
var email_Address = "info3@closetag.com";
18
19
document.write("<b>"+ age +"<b><br>");
20
document.write("<b>"+ username +"<b><br>");
21
document.write("<b>"+ myName +"<b><br>");
22
document.write("<b>"+ color +"<b><br>");
23
document.write("<b>"+ user_Name +"<b><br>");
24
document.write("<b>"+ password +"<b><br>");
25
document.write("<b>"+ email +"<b><br>");
26
document.write("<b>"+ emailAddress+"<b><br>");
27
document.write("<b>"+ email_Address +"<b><br>");
28
</script>
29
30
</body>
31
</html>