My photo

Aleksey Shelukhin

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

About me

I am 20 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.

About me
Skills

Skills

  • Markdown
  • HTML
  • CSS (+Bootstrap)
  • JS (basics)
  • Git and GitHub
  • VSCode
Education

Education

  • Courses on the educational platform Stepik:
    • Web Development for Beginners: HTML       and CSS (100% + Certificate)
    • JavaScript for Beginners (100% +       Certificate)
  • Learn.javascript (in the process)
  • RS School Course «JavaScript/Front-end.       Stage 0» (in the process)

Languages

  • English: A2 (Elementary)
  • Russian: 100%
Languages