$("body").children().each(function() {
$(this).html($(this).html().replace(/old text/g,"new text"));
});
const replacePairs= {'было1': 'стало1', 'было2': 'стало2', 'было3': 'стало3'};
$("body").children().each(function() {
let currentNode = $(this);
for (const pair in replacePairs) {
currentNode.html(currentNode.html().replace(/`${pair}`/g, `${replacePairs[pair]}`));
}
});