Files
2025-02-28 13:27:28 +01:00

11 lines
139 B
JavaScript

// OK - `const` is block scoped in ECMAScript 2015
function f() {
{
const val = 1;
}
{
const val = 2;
}
}