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