I'm learning to use the fantastic Bacon.js library for functional reactive programming. Adding handlers to a property or stream is easy:
handler = function(value){... do something ...}
property.onValue(handler)
Say somewhere down the line I want to cancel this subscription, like this (pseudocode):
property.unsubscribe(handler)
Is there a way to do this with Bacon.js?