Usando bind () con la función de JavaScript integral

		  String.prototype.x = function()
			  {
				  return this;
			  }
let test =			  String.prototype.x.bind("SREWFEWREWREW");
console.log(test());
	
Javasper