photo of mine

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.

Let's work together

Skills

Education

2008 - 2013

Dubna State University

Department of General and applied geophysics

since June, 2022

Rolling Scopes School

Javascript/Front-End

Languages

English

Pre-Intermediate

Russian

Native

Projects

Local Club

CV

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