Hanna's photo

Hanna Lashkarova

Junior Frontend Developer

Contacts

Education

laptop_windowsIT Academy (2018)

HTML, CSS и JavaScript

laptop_windowsIT Academy (2016)

Software Testing Engineer

school Belarusian state university of culture (2011)

Librarianship and bibliography. Management

Languages

  • Belarusian - native speaker
  • Russian - native speaker
  • English - A2 (B1 in process...)
  • Lithuanian - A1

Interests

Travel
Games
Boardgames
Cooking
Cats

About me

Back in 2011, I received a librarian education, but I did not intend to be a librarian.
I started studying web development back in 2017, but I didn’t have enough skills (first of all, knowledge of English) to enter the profession.
Since then, I have been moving, albeit not very quickly, towards my goal of becoming a Frontend developer.
I like to work in a team, I find solutions for unsolvable (at first glance) tasks, I'm not afraid of difficulties, but I like to whine.
I believe that a person can learn everything if he really wants it.

Skills

  • HTML5, CSS3 (BEM methodology)
    star star star star star_outline
  • JavaScript (Basic)
    star star_outline star_outline star_outline star_outline
  • Git/GitHub
    star star star star_outline star_outline
  • Photoshop
    star star star star_outline star_outline
  • Windows OS, Linux (Ubuntu)
    star star star star star_outline
  • Editors: SublimeText, Atom, VSCode
    star star star star star_outline

Code example

                        
                            function colourAssociation(array){
                            let newArr = [];
                            for (let i = 0; i<array.length; i++){
                                let smallArray = array[i];
                                let obj = {};
                                obj[smallArray[0]] = smallArray[1];        
                                newArr.push(obj);
                            }
                        return newArr;
                        };