Leonid Khitskov
Front-end Developer
Being educated as an engineer and practiced as a visual content maker I believe front-end development is a perfect field to make a career for me. So now I’m full of energy accumulating knowledge and gaining skills to find myself in this industry.
Skills
Education
Languages
English
Pre-Intermediate
Russian
Native
Code Example
function vowelIndices(word) {
const vowels = 'aeiouyAEIOUY';
let myArr = word.split('');
let res = [];
myArr.forEach((el, index) => {
if (vowels.includes(el)) {
res.push(index + 1);
}
})
return res;
}