DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Javascript Block
คาดว่ามันใช้ในà¸à¸²à¸£ encapsulate โค้ดมั้ง
var t = (function(){
var plus = function(a, b){
return a + b;
};
return function(i, j){
return plus(i, j);
}
})();
t(1, 2);





