JavaScript scope

A collection of scope accessible variables.


JavaScript scope

In JavaScript, objects and functions are also variables.

In JavaScript, scope is a collection of accessible variables, objects, and functions.

JavaScript function scope: The scope is modified within the function.


JavaScript local scope

Variables are declared within a function and have a local scope.

Local variables: can only be accessed inside the function.

Example

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>php中文网(php.cn)</title>
</head>
<body>
<p>局部变量在声明的函数内可以访问。</p>
<p id="demo"></p>
<script>
    myFunction();
    document.getElementById("demo").innerHTML =
            "我可以显示 " +  typeof carName;
    function myFunction()
    {
        var carName = "Volvo";
    }
</script>
</body>
</html>

Run the program and try it


Because local variables only act within the function, it is different Functions can use variables with the same name.

Local variables are created when the function starts executing, and will be automatically destroyed after the function is executed.


JavaScript global variables

A variable defined outside a function is a global variable.

Global variables have global scope: all scripts and functions in the web page can be used.

Example

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>php中文网(php.cn)</title>
</head>
<body>
<p>全局变量在任何脚本和函数内均可访问。</p>
<p id="demo"></p>
<script>
    var carName = "Volvo";
    myFunction();
    function myFunction()
    {
        document.getElementById("demo").innerHTML =
                "我可以显示 " + carName;
    }
</script>
</body>
</html>

Run the program and try it


If the variable is not declared within the function (var is not used keyword), this variable is a global variable.

In the following example, carName is within the function, but is a global variable.

Example

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>php中文网(php.cn)</title> 
</head>
<body>
<p>
如果你的变量没有声明,它将自动成为全局变量:
</p>
<p id="demo"></p>
<script>
myFunction();
document.getElementById("demo").innerHTML =
"我可以显示 " + carName;
function myFunction() 
{
    carName = "Volvo";
}
</script>
</body>
</html>

Run the program and try it


Global variables in HTML

In HTML, global variables are window objects: all data variables belong to the window object.

Example

##<!DOCTYPE html>


<html>
<head>
    <meta charset="utf-8">
    <title>php中文网(php.cn)</title>
</head>
<body>
<p>
    在 HTML 中, 所有全局变量都会成为 window 变量。
</p>
<p id="demo"></p>
<script>
    myFunction();
    document.getElementById("demo").innerHTML =
            "我可以显示 " + window.carName;
    function myFunction()
    {
        carName = "Volvo";
    }
</script>
</body>
</html>

Run the program to try it



Continuing Learning
||
<html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <p> 在 HTML 中, 所有全局变量都会成为 window 变量。 </p> <p id="demo"></p> <script> myFunction(); document.getElementById("demo").innerHTML = "我可以显示 " + window.carName; function myFunction() { carName = "Volvo"; } </script> </body> </html>
submitReset Code
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!