Local JavaScript Variables
// code here can not use carNamefunction myFunction() {
var carName = "Volvo";
// code here can use carName
}
-----------------------
Global JavaScript Variables
var carName = " Volvo";// code here can use carName
function myFunction() {
// code here can use carName
}
----------------------------
Automatically Global
// code here can use carNamefunction myFunction() {
carName = "Volvo";
// code here can use carName
}
No comments:
Post a Comment