What is the difference between these two ways and also which is the better way? Or both to be used?
bind on room: (as per the quickstart app)
room.on('trackSubscribed', function(track, publication, participant) => {
});
bind on participants: (as per the README.md git-repo)
room.on('participantConnected', function(participant) {
participant.on('trackSubscribed', track => trackSubscribed(div, track));
});