View difference between Paste ID: brR4kGhZ and KhEG9vJ3
SHOW: | | - or go back to the newest paste.
1
var x = 3;
2
(function(){
3
  x = 6;
4
  console.log(x)
5
  var x;
6-
})
6+
})();
7
console.log(x)