function LetterChanges(str) {
const alphabet = 'abcdefjhijklmnopqrstuvwxyz_'
const vowel = 'aeiou'
return str.toLowerCase().split('').map((c) => {
c = alphabet[alphabet.indexOf(c)+1];
if (vowel.includes(c)) c = c.toUpperCase();
if (c === "_") c = "A"
console.log(c);
return c;
}).join('');
}
#PasswordAuthentication yes
раскомментировали в конфиге ssh?function insertAfter(source, search, insert) {
const p = source.indexOf(search);
return (p === -1
? source.slice()
: source.slice(0, p + 1).concat(insert, source.slice(p + 1))
);
}
console.log(insertAfter('Ivanov I.Petrov P. Sidorov S.', '.', '<br>'));
// а еще кроме строк можно и массивы той же функцией обрабатывать
console.log(insertAfter(['Ivanov I', '.', 'Petrov P.', ' Sidorov S.'], '.', '<br>'));