my photo

Valentin Puchko

Student of Front-end development

I'm 33 y.o, live in Minsk, have a high grade of politology. I want to change my routine life, so i'm decided to start learning programming.

English level between B1 and B2 by result of free on-line testing.

Contacts

E-mail | GitHub | Discord

Social media

Instagram | Telegram | Facebook

Strength

  • Positive attitude
  • Motivated
  • Self-directed

Weaknesses

  • Self-criticism
  • Too detail oriented
  • Too sensitive

Expirience

Place Courses Date
Hexlet.io Beginning of Terminal, Git, JS late 2021
Code-Basics Beginning of JS, HTML, CSS late 2021

Code example

const reverse = (str) => {

let i = 0;

let result = '';

while (i <= str.length - 1) {

result = `${str[i]}${result}`;

i++;

}

return result;

};

This is my first project ever so dont be mad pls=)