Scope
File Location
javascript-library
└── 1-Fundamentals
└── 4-Functions
04-scope.js <----You will be working in this file.Global JavaScript Variables
var carName = " Volvo";
// code here can use carName
function myFunction() {
// code inside this function can use the variable
carName = "Lamborghini";
}Local Scope
More on scope
Last updated