8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e78d7ae commit ae8bf77Copy full SHA for ae8bf77
JS-C1/01-Fundamentals-Part-1/starter_/script.js
@@ -33,6 +33,7 @@ console.log(js);
33
34
*/
35
36
+/*
37
let javascriptIsFun = true;
38
39
console.log(javascriptIsFun);
@@ -49,7 +50,29 @@ year = 1899;
49
50
console.log(typeof year);
51
52
-console.log(typeof null); // Object
53
+console.log(typeof null); // Object
54
+
55
+*/
56
57
+// "let, const" are available in new version ES6.
58
+let age = 22;
59
+age = 23; // Reassign the variable Mutable Variable.
60
+age = 24;
61
62
63
+const birthYear = 2000; // In-Mutable variable.
64
+// const job; Error..
65
66
+var job = "programmer";
67
+job = "teacher";
68
+job = "youTuber";
69
70
71
+lastName = "Sugali";
72
+console.log(lastName);
73
74
75
76
77
78
0 commit comments