Declaration

suggest change

There are four principle ways to declare a variable in JavaScript: using the var, let or const keywords, or without a keyword at all (“bare” declaration). The method used determines the resulting scope of the variable, or reassignability in the case of const.

var a = 'foo';    // Function-scope
let b = 'foo';    // Block-scope
const c = 'foo';  // Block-scope & immutable reference

Keep in mind that you can’t declare constants without initializing them at the same time.

const foo; // "Uncaught SyntaxError: Missing initializer in const declaration"

(An example of keyword-less variable declaration is not included above for technical reasons. Continue reading to see an example.)

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Declarations and assignments:
* Syntax
* Declaration

Table Of Contents
5 Declarations and assignments
11 Arrays
12 Objects
14 Classes
16 Map
17 Set
24 Loops
27 Date
29 Scope
30 AJAX
35 Cookies
41 JSON
44 Fetch
45 Modules
46 Screen
64 Console
68 Symbols
73 Modals
76 Events
86 Proxy
89 WeakMap
90 WeakSet
102 Tilde