Elena Pavlova

My main goal is to be a professional frontend developer which can solve different tasks for creating web apps.

I tend to keep my knowledge and technical skills relevant to modern developments.

I believe that RS School will help me to get strong knowledge of ES6 JavaScript, Typescript and great experience of React apps development.

Job objective

Frontend developer

photo

Contacts

Courses

  • 01/2018 – 02/2018 HTML Academy

    Professional HTML & CSS, level 2

    Certificate Project Website

  • 01/2017 – 03/2017 HTML Academy

    JavaScript basic course

    Certificate Project

  • 09/2016 – 10/2016 HTML Academy

    HTML & CSS advanced course

    Certificate Project Website

  • 05/2014 – 05/2016 Educational Center of HTP

    Practice of Front-end Development

    Scrum-methodology. Git, Jira, Confluence. Work in PHP and .Net teams

  • 01/2015 – 04/2015 Educational Center of HTP

    JavaScript Advanced Level

    SPA “Barley-break”

  • 03/2014 – 06/2014 Educational Center of HTP

    WEB Development course

Languages

  • Russian - Mother Tongue
  • English - B2 (Upper-intermediate) / Certificate CEFR Level B2 from iSpeak Language school

Some projects

  • To-Do App React
    To-Do App React: React, HTML5, CSS3
  • Weather Minsk
    JS widget: Weather in Minsk. XMLHttpRequest, json, api openweathermap
My Portfolio

Code Example

Stop gninnipS My sdroW!
KATA from CODEWARS:

Write a function that takes in a string of one or more words, and returns the same string, but with all five or more letter words reversed (like the name of this kata).
  • Strings passed in will consist of only letters and spaces.
  • Spaces will be included only when more than one word is present.
            
function spinWords(text) {
  const words = text.split(' ');
  const spinnedWords = words.map((word) => 
    word.length >= 5 
      ? word.split('').reverse().join('') 
      : word);
      
  return spinnedWords.join(' ');
}