sample: Scoping anonymous function

var o = 'hello world';

// first snippet
(function() {
  alert(
this);
}
).call(o);

// second snippet
window.setTimeout(function() {
  (
function() {
    alert(
this);
  }
).call(o);
}
5000);
posted @ 2008-06-15 00:46  new 维生素C.net()  阅读(233)  评论(0编辑  收藏  举报