class List{ function show(){ } } function show(callback){ callback() } const obj = new List; show(obj.show.bind(this));