cv-photo

Tatiana Silkova

Junior Front-End Developer

Contacts

  • Location: Minsk, Belarus
  • Phone: +375 (99) 999 99 99
  • Email: taniaalekseyuk@gmail.com
  • Discord: Tania(@Tanik-a)
  • GitHub

Skills

  • HTML5, CSS3
  • JavaScript (basic)
  • Git, GitHub
  • VS Code

About Me

I am a hardworking and motivated person who wants to change job and become a front-end developer. I am a quick learner and a good worker, a good communicator, responsible and self-disciplined person.

Education / Courses

Languages

English: Intermediate

Spanish: Fluent

Code example

              
function testCycle(a, b) {
  var x;
  x = 0;
  if (a < b){
    for (let i = a; i <= b; i = i + 1){
      x = x + i ** 2;
    }
  }else if (b < a){
    for (let i = b; i <= a; i = i + 1){
      x = x + i ** 2;
    }
  }else x = a ** 2;
    return x;
}
                
            

Projects