AFAIK, There is a slight difference between bind and proxy, which can matter a lot if you are using jQuery. Function.prototype.bind always returns a new function pointer. jQuery.proxy only returns a new function if a proxy of the same args has not already been created. Not that you would want to do it like this, but:
$(elm).on('click', doStuff.bind(thing)); //adds event handler
$(elm).off('click', doStuff.bind(thing)); //does not remove event handler as 2nd call of doStuff.bind(thing) always returns a new/different function
$(elm).on('click', $.proxy(doStuff, thing)); //adds handler
$(elm).off('click', $.proxy(doStuff, thing));//DOES remove handler, as a second call to $.proxy(doStuff, thing) is smart enough to know about similar use-cases
//Likewise, if you just passed 'thing.doStuff()' into the $.off() method, it would also work