JavaScript Beginner
Variables
Topics discussed:
1) Create variable using var, let and const
2) The differences between let and const
3) JavaScript comment Error correction: we cannot redeclare either let or const if they are in the same block, but variables declared with let or const can be redeclared if they are in different block.