Код: Выделить всё
String.prototype.test= () => {
return `----${this}----`;
};
let myStr = "hello";
console.log(myStr.test()); // returns window object
// --------------------------------------------------------------------
String.prototype.testing= function() {
return `----${this}----`;
};
let myStr1 = "hello";
console.log(myStr.testing()); // returns myStr1
Подробнее здесь: https://stackoverflow.com/questions/798 ... w-function
Мобильная версия