Jak zastąpić prototyp javascript funkcją niestandardową

<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>

Ta kolejna linia jest teraz zepsuta - jak naprawić?

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

questionAnswers(1)

yourAnswerToTheQuestion