JSFiddle - React, Tailwind, and code Playground

by prozoroff

JavaScript

if (!Function.prototype.bind) {
    Object.defineProperty(Function.prototype, 'bind', {
        value: function() {
           alert(1);
        }
    });
}

alert(document.getElementById.bind)