mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
32 lines
321 B
Text
32 lines
321 B
Text
VAR
|
|
LET
|
|
CONST
|
|
function FUNC() {}
|
|
GLOBAL
|
|
VAR
|
|
undefined
|
|
undefined
|
|
function FUNC() {}
|
|
GLOBAL
|
|
true
|
|
false
|
|
false
|
|
true
|
|
true
|
|
TypeError: Assignment to constant "CONST"
|
|
VAR
|
|
LETLET
|
|
CONST
|
|
function FUNC() {}
|
|
GLOBAL
|
|
VAR
|
|
undefined
|
|
undefined
|
|
function FUNC() {}
|
|
GLOBAL
|
|
true
|
|
false
|
|
false
|
|
true
|
|
true
|
|
TypeError: Assignment to constant "CONST"
|