Код: Выделить всё
let str = 'Pig latin is cool';
str = str.split(' ');
str.map(el => {
const fl = el.split('').shift();
el += fl + 'ay';
console.log(el.join(''));
});Подробнее здесь: https://stackoverflow.com/questions/794 ... p-function
Код: Выделить всё
let str = 'Pig latin is cool';
str = str.split(' ');
str.map(el => {
const fl = el.split('').shift();
el += fl + 'ay';
console.log(el.join(''));
});