Home » JavaScript global variable

JavaScript global variable

by Online Tutorials Library

JavaScript Global Variable

A JavaScript global variable is declared outside the function or declared with window object. It can be accessed from any function.

Let’s see the simple example of global variable in JavaScript.

Test it Now

Declaring JavaScript global variable within function

To declare JavaScript global variables inside function, you need to use window object. For example:

Now it can be declared inside any function and can be accessed from any function. For example:

Test it Now


Internals of global variable in JavaScript

When you declare a variable outside the function, it is added in the window object internally. You can access it through window object also. For example:

You may also like