charlesprabhu
07-20-2021, 06:00 AM
Global Variables − A global variable has a global scope which means it can be defined anywhere in your JavaScript code.
Local Variables − A local variable will be visible only within a function where it is defined. Function parameters are always local to that function.
Local Variables − A local variable will be visible only within a function where it is defined. Function parameters are always local to that function.