View Single Post
  #3  
Old 12-12-2009, 01:21 AM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
Quote:
Originally Posted by WhiteDragon View Post
Inline Closures
These would be useful to make code a bit cleaner:
PHP Code:

foobar
(function (temp.atemp.b) {
  return 
temp.temp.b;
}); 
You mean instead of doing this?
PHP Code:
temp.func = function (temp.atemp.b) {
  return 
temp.temp.b;
};
foobar(temp.func); 
Reply With Quote