rsschool-cv

Andrey Shinkarev

Junior Front End Developer


Contact Info

About Myself

As a child, when I was 10, I started programming in BASIC. It was fun. At school I really liked computer science and programming. After school, I went to university and graduated as an electrical engineer. But the childhood love of programming has not gone away.

Now I want to learn the necessary knowledge and become a front-end developer.

Skills

Code example

let commentForm = document.querySelector('.comment-form');
let commentList = document.querySelector('.comment-list');
let commentField = document.querySelector('.comment-field');

commentForm.onsubmit = function (evt) {
  evt.preventDefault();

  let newComment = document.createElement('li');
  newComment.classList.add('user-comment');
  newComment.textContent = commentField.value;
  commentField.value = '';
  commentList.append(newComment);
};

Experience

Education

Languages