my photo

Aleksander
Gorovoi
RSSchool Student

CONTACTS

  • +375 29 758 15 23
  • gorovoialeksanderrs@gmail.com
  • Vitebsk, Republic of Belarus

EDUCATION

  • 2000 - 2003

    Vitebsk Technological College

  • 2004 - 2007

    The Command and Engineering Institute

  • 2021 - 2022

    Online School Stepik.org (JavaScript/HTML5,CSS3)

SKILLS AND KNOWLEDGE

  • HTML5, CSS3
  • JavaScript Basics
  • Git, GitHub
  • VS Code
  • Adobe Photoshop

FOREIGN LANGUAGE

  • Belarusian, Russian
  • English

INTEREST

  • Fishing
  • Reading
  • Cooking
  • Gaming

ABOUT ME

Strengths: purposefulness, energy and perseverance, self-control, conscious discipline. I have good interpersonal skills.

I am an excellent team worker and willing to learn and develop new skills. My strengths are determination and diligence. I really enjoy creating web applications.

CODE EXAMPLE

Write a function that takes a string as an argument and returns the number of vowels that are contained in the string. The vowels are "a", "e", "i", "o", "u".

function checkParent (src, dest) {
while (src != null) {
if (src.tagName == dest) return src
src = src.parentElement
}
return null
}
Certificate