Closure Examples

Closure Examples

by Govinda Ghimire

JavaScript

function foo(x) {
  var tmp = 3;
  function bar(y) {
    alert(x + y + (++tmp)); // will alert 16
  }
  bar(10);
}
foo(2);