So ersetzen Sie den Javascript-Prototyp durch eine benutzerdefinierte Funktion

<code>// I am trying to make a clone of String's replace function
// and then re-define the replace function (with a mind to
// call the original from the new one with some mods)
String.prototype.replaceOriginal = String.prototype.replace
String.prototype.replace = {}
</code>

Diese nächste Zeile ist jetzt unterbrochen - wie behebe ich das?

<code>"lorem ipsum".replaceOriginal(/(orem |um)/g,'')
</code>

Antworten auf die Frage(1)

Ihre Antwort auf die Frage