JavaScript by Patrik

Global Scope

Variables declared Globally (outside any function) have Global Scope.

Global variables can be accessed from anywhere in a JavaScript program.

Variables declared with varlet and const are quite similar when declared outside a block.

var x = 2;       // Global scope
let x = 2;       // Global scope
const x = 2;       // Global scope

Comments

Leave a Comment

All fields are required. Your email address will not be published.