Aleksey Shelukhin

Contact information

About me

I am 21 years old, study at the St. Petersburg State University of Aerospace Instrumentation. At the beginning of my second year at university, I became interested in the profession of a front-end developer, after which I began to take various free courses on learning HTML, CSS and JS. I hope to get more knowledge in the RS School courses so that I can become a junior front-end developer as a result.

Skills

Code example

'use strict';

/*
A function that returns an array of integers
from the given number up to and including 1
*/

function reverseArr(n) {
  let arr = [];
  let j = -1;

  while (n > 0) {
    arr[++j] = n;
    --n;
  }

  return arr;
}

Projects

Education

Courses on the educational platform Stepik:

RS School Courses:

Languages