1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
(function(){

  var x = 3;

  try
  {
    throw 5;
  }
  catch(x) { }

  alert(x);

})();