<!DOCTYPE html>
<html>
<head>
<input id="input" />
<button id="btn">Answer</button>
<div id="console"></div>
<script>
!(() => {
const replaceSomething = function (str) {
if (!/^[a-zA-Z0-9\s]*$/.test(str)) {
return 'содержит посторонние символы!';
}
return str.replace(/ый/giu, 'ая');
};
document.querySelector('#btn').onclick = () => {
console.log(replaceSomething(input.value));
};
})();
</script>
</head>
<body>