25. Events
25.1 When attaching data payloads to events (whether DOM events or something more proprietary like Backbone events), pass an object literal (also known as a "hash") instead of a raw value. This allows a subsequent contributor to add more data to the event payload without finding and updating every handler for the event. For example, instead of:
$(this).trigger('listingUpdated', listing.id);
$(this).on('listingUpdated', (e, listingID) => {
});
prefer:
$(this).trigger('listingUpdated', { listingID: listing.id });
$(this).on('listingUpdated', (e, data) => {
});
출처 : https://github.com/airbnb/javascript