Альтернативный синтаксис Bind () для JavaScript

	 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()*/
Javasper