Anton Maroz

Contact

Education

  • 2014
    IT-Academy - Front-end courses: training for a web developer
  • 2012-2015
    Academy of Public Administration under the President of the Republic of Belarus
  • 2006-2010
    Belorusian State University of Informatics and Radioelecnronics (BSUIR)

ANTON
MAROZ

Junior Front-End developer

About me

I have been working as a system administrator for a long time, but often there is a desire to change my profession to a front-end developer.
Now I will take courses at RS School to gain new knowledge in this direction.

Skills

  • HTML/CSS.
  • Basic JavaScript.
  • Git.
  • English - A2.

Code example

function factorial(n) {
      if (n ❮ 0) return null;
      if (n === 0) return 1;
      return n * factorial(n-1);
}