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