Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
let text = "helloMyNameIs"; let newText = ""; for(let i =0; i< text.length; i++) { i === 0 ? newText+=text[i].toUpperCase() : text[i].charCodeAt(0) !== text[i].toUpperCase().charCodeAt(0) ? newText+=text[i] : newText += ` ${text[i].toLowerCase()}` } console.log(newText)