Saturday, May 9, 2015

JavaScript Scope


Local JavaScript Variables

// code here can not use carName
function 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 carName
function myFunction() {
    carName = "Volvo";

    // code here can use carName
}

No comments:

Post a Comment