cachaito
6/30/2014 - 10:41 PM

Ciekawe inicjowanie metod

// Boring
if (success) {
  obj.start();
} else {
  obj.stop();
}
 
// Nice
var method = (success ? 'start' : 'stop');
obj[method]();

// Nicer
obj[success ? 'start' : 'stop']();