photo of Dmitry Khamitsevich

Dmitry Khamitsevich

Beginner (junior) front-end developer

Dmitry Khamitsevich

I am 27 years old.

Some words about me:

I want to become a junior front-end developer and in future become a full-stack developer, develop and grow in the IT direction. My dream is to work for such giants as Google or Facebook. I have about 7 month experience in web-development. And i like front-end very well.

My skills:

Programming languages:

  • HTML
    HTML
  • CSS
    CSS
  • JS
    JavaScript

Frameworks and other technologies

  • ReactJS
    ReactJS
  • Preprocessor SASS
    SASS
  • GIT
    GIT
  • Webpack
    Webpack
  • Eslint
    Eslint
  • Other JS libraries...
    Other...

Code example:


          export default function toCreateHTML(tagName, classList, parent, source, attribute, content) {
            const HTMLElement = document.createElement(tagName);

            if (classList !== '' && classList !== undefined) {
              classList.map((a) => HTMLElement.classList.add(a));
            }

            if (parent !== '' && parent !== undefined) parent.append(HTMLElement);

            if (source !== '' && source !== undefined) {
              // eslint-disable-next-line no-unused-expressions
              tagName === 'img' ? HTMLElement.src = source : HTMLElement.setAttribute('href', source);
            }

            if (attribute !== undefined && attribute !== '') {
              HTMLElement.setAttribute(attribute[0], attribute[1]);
            }

            if (content !== undefined) {
              HTMLElement.innerText = content;
            }

            return HTMLElement;
          }

              

Experience:

This are some of my projects:

Education:

English skills:

Pre-intermediate level. Have some experience of communications with people from Europe while traveling. Study english with app “Easy Learn English”, “Duolingo”.