Local Variable:
local variable exists only in certain function. Outside of that function, variable is unknown. Simply local variable is for local.
Eg: function()
{
var declaration
}
Global variable
Global variable is possessed by all function. It's exists in global level of the program. Eg:
var declaration
function();
main()
{
}