-
Notifications
You must be signed in to change notification settings - Fork 0
ECMAScript
Marie-Louise edited this page Aug 24, 2018
·
7 revisions
ECMAScript can be defined as the specification for defining a general purpose language. It provides rules, guidelines and details that scripting languages must observe to be ECMAScript compliant. JavaScript is the only scripting language that it regulates.
The following keywords provide Block Scope Variables (and constants).
let
Before ECMAS2015 Variables declared inside a function (locally) have what is described as Function Scope .Local variables can be accessed ONLY inside the function.
Global Scope
Block scope
const