Initial commit
This commit is contained in:
12
VarLetConst/varLetConst.js
Normal file
12
VarLetConst/varLetConst.js
Normal file
@@ -0,0 +1,12 @@
|
||||
b = 12;
|
||||
|
||||
console.log(b);
|
||||
|
||||
var b;
|
||||
|
||||
//Let
|
||||
c = 12;
|
||||
|
||||
console.log(c);
|
||||
|
||||
let c;
|
||||
Reference in New Issue
Block a user