function x() { return this; } let btn = "DDDDD"; let y = x.bind(btn); console.log(y()); /*remember the x() function is x and the return y is a function y()*/