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.