UNPKG

160 BJavaScriptView Raw
1"use strict";
2
3var x = 3;
4let x = 4;
5const x = 5;
6
7function f() {
8 let f = 1;
9 function f() {
10 }
11
12 const y = 1;
13 if (1) {
14 var y;
15 }
16}