UNPKG

132 BJavaScriptView Raw
1"use strict";
2function fn() {
3 var x = 3;
4 if (true) {
5 let x = 4;
6 console.log(x);
7 }
8 console.log(x);
9}