This article will cover basic concept like Scope in Javascript. Scope defines the visibility of a variable, these variables are not visible outside the scope in which they are declared. Javascript has global scope, function scope and block scope. Glo...