Element.prototype.sayHi = function() {
alert(`Hello, I'm ${this.tagName}`);
};
document.documentElement.sayHi(); // Hello, I'm HTML
document.body.sayHi(); // Hello, I'm BODY
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.