All pastes #2053778 Raw Edit

Untitled

public javascript v1 · immutable
#2053778 ·published 2011-05-04 11:52 UTC
rendered paste body
someValue = "foo";function CreatAlertByValue(val) {  return function () {    alert(val);  };}someElement.onclick = CreateAlertByValue(someValue);someValue = "bar";