We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac3fc63 commit 7b8f584Copy full SHA for 7b8f584
1 file changed
js_basics/variables.js
@@ -0,0 +1,5 @@
1
+const age = 23; //once u declared u can't change this
2
+var name = "krish";
3
+let mobile = 9773827637;
4
+
5
+console.log([age,name,surname,mobile]);
0 commit comments