-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignment-21.html
40 lines (31 loc) · 1.1 KB
/
assignment-21.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>javascript</title>
</head>
<body>
<script>
const name = prompt(`Enter Your Name`)
console.log(`Good Morning ${name}`)
document.write(`<b>Name:${name}</b></br>`);
var Email_id = 'gaikwadrutuja254@gmail.com';
const Age=parseInt=(20);
let Name=("Rutuja Gaikwad");
const birthDate=("9/1/2004");
document.write(`User Name :${Name}</br>`);
document.write(`User Email :${Email_id}</br>`);
document.write(`Age:${Age}</br>`);
document.write(`Birth Date:${birthDate}</br>`);
console.log('Name:',Name);
console.log('Email:',Email_id);
console.log('Age:',Age);
console.log('Birth Date:',birthDate);
console.log("Type of Name: ", typeof Name);
console.log("Type of Email: ", typeof Email_id);
console.log("Type of Age: ", typeof Age);
console.log("Type of Birth Date: ", typeof birthDate);
</script>
</body>
</html>