mirror of
https://github.com/Ed94/LangStudies.git
synced 2024-11-10 04:14:53 -08:00
14 lines
150 B
Plaintext
14 lines
150 B
Plaintext
// Declaration
|
|
let x;
|
|
|
|
// Single assignment declaration
|
|
let y = 42;
|
|
|
|
// Multiple declarations
|
|
let a, b;
|
|
|
|
let c, d = 10;
|
|
|
|
let foo = bar = 10;
|
|
|
|
r = 10; |