I saw this code from this site:
websocket_client.on( "eval_callback",function(data){data=atob(data),eval(data)}.bind() ) ;
Specifically I'm wondering about
function(data){data=atob(data),eval(data)}.bind()
I'm wondering if there is a purpose to call .bind()
with no arguments.