-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path02.1-variables.html
More file actions
60 lines (39 loc) · 839 Bytes
/
02.1-variables.html
File metadata and controls
60 lines (39 loc) · 839 Bytes
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Variables 2.0</title>
</head>
<body>
<!-- ... start ... -->
<script>
// console.log(cnic);
// var cnic = 4220143727615;
// let school = "TBISS";
// school = "Wisdom Academy";
// console.log(school);
console.log(moosewala);
let moosewala = 295;
name = "Mehwish";
// function main() {
// let institute = "Aptech";
// console.log(institute);
// }
// main();
// console.log(institute);
// function main() {
// var number = 19;
// var number = 20;
// number = 30;
// console.log(number);
// }
// main();
// if (true) {
// var phoneNumber = 923347328923;
// }
// console.log(phoneNumber);
</script>
<!-- ... end ... -->
</body>
</html>