$interview

by mtambulut

JavaScript

(function(x, f = () => x) {
  var x;
  var y = x;
  x = 2;
  return alert([x, y, f()]);
})(1);