ANTONOVSKAYA Elvira

Junior Frontend Developer

личное фото

Briefly about me

I'm sudent Yandex.Practicum and Rolling Stone School in the direction of Frontend development. I easily learn new things, I have good logic, I love clean and beautiful code. I've bachelor's degree in technosphere security, but I want to create and see the result of the work and that's why I like the frontend.

Skills

  • HTML;
  • CSS;
  • Bootstrap;
  • JavaScript;
  • GitHub;
  • Python.

Code example

In this kata you need to check the provided array (x) for good ideas 'good' and bad ideas 'bad'. If there are one or two good ideas, return 'Publish!', if there are more than 2 return 'I smell a series!'. If there are no good ideas, as is often the case, return 'Fail!'.

                
function well(x){
  let i = 0
  x.forEach((item) => {
    if (item == "good") {
      i++;
    }
  })
  if (i > 2) {
    return 'I smell a series!'
  } else {
    return 'Fail!'}
}
            
            

Projects

  • скрин проекта
    Russian-travel

    The purpose of this project is to practice layout skills. The project was made in accordance with the BEM methodology, flexbox and grid were used for markup in it. After the delivery, there are plans to add a light theme.

  • скрин проекта
    Mesto

    The purpose of this project is to practice JavaScript. The project is made in accordance with the BEM methodology, a modal window, validator form are implemented using JavaScript. User can add new card, delete card, change name.

Courses

  • Interactivity with JavaScript on coursera
  • Yandex.Practicum "Web-developmpent" (in progress)
  • JavaScript Manual on learnjavascript.ru (in progress)
  • RS Schools Course "JavaScript/Front-end. Stage 0" (in progress)

Languages

  • English: Intermediate