Lesson 1, Topic 1
In Progress

Tips

๐Ÿ’ก If local variable and global variable have same name then changing value of one variable does not affect on the value of another variable.

๐Ÿ’ก  JavaScript does not allow block level scope inside { }. For example, variables defined in if block can be accessed outside if block, inside a function.