This prototype bind

by Rich Costello

JavaScript

function foo(toast) {
	console.log( this.a, toast ); 
  return this.a + toast;
}
var obj={ a:2
};
var bar = foo.bind( obj );
var b = bar( 3 ); //  
console.log( b );