rsschool-cv

Leonid Khitskov

Contacts

About me

Being educated as an engineer and practiced as a visual content maker I believe front-end development will be 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.

Core Skills

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;
}

Education

Languages