JSFiddle - React, Tailwind, and code Playground

by Lazaro Contreras

JavaScript

Object.assign(String.prototype, {
    Hello() {
        return "Hello " + this;
    }
});
var s = "Lázaro";
console.log(s.Hello());
console.log(s);