+ 2
Ayan Pradhan
There are two type of variable local and global
If you declare variable inside a function then scope of variable would be within the function.
So many function can have variable with same name, you will not get any name conflict error because scope of the variable is inside that function only
+ 1
Yes, that's possible!