String.prototype.replace_all = function () {
// let args = arguments;
if (Array.isArray(arguments[0]))
{
for (let i in arguments[0]) {
this.replace(new RegExp(arguments[0][i], "gi"), Array.isArray(arguments[1]) ? arguments[1][i] : arguments[1]);
}
}
console.log(arguments);
return this;
}
Изначально она выглядит так.