Alexander Brutski:
Front-end Developer

My photo

About me

Beginner IT specialist.

I studied mathematics and computer science at the Gomel State Regional Lyceum. I also took a basic C++ course in my first year at the Belarusian State University of Informatics and Radio Engineering.

AMy goal is to become a Front-end developer, and later a full-stack developer.

Experience and skills

  • 4 years of work as a tester in a secret company.
  • Education: incomplete higher education, BSUIR, specializing in Industrial Electronics.
  • English proficiency: B1 (Intermediate)
  • Basic knowledge: HTML, CSS, JS, Figma, C++

Contacts

  • Phone number: +375293959639 (life)
  • inst: Alexander Brutski

Code examples

function creatAndAppend(whatParent, whatTag, whatClass = false, whatText = false) {
  const newItem = document.createElement(whatTag);
  if (whatClass) {
    whatClass = whatClass.split(' ');
    for (let i = 0; i < whatClass.length; i += 1) {
      newItem.classList.add(whatClass[i]);
    }
  }
  if (whatText) newItem.innerHTML = whatText;
  whatParent.appendChild(newItem);
  return newItem;
}