Zaiec Ievgen

Avatar

Contacts:

  • E-mail: ezaec@gmail.com
  • Discord: Evgeniy (@EVG777-prog)
  • Phone number: +380504763340
  • Address: Ukraine, Kiyv

Career Objective:

Interested to work as a Javascript Programmer (Front-end/Back-end) in the interesting company where I can show my skills in programming to help the organization grow and learns new technologies.

Computer skills:

  • HTML
  • CSS
  • JavaScript
  • Git

Languages:

  • Russian (native)
  • English (intermediate)

Education:

Dahl East Ukrainian State University, Lugansk, Ukraine, 1997-2002 Finance

Professional Experience:

  1. Worked at bank as a credit expert for small and medium-sized businesses. 2007-2009.
  2. I work as a private entrepreneur, I have my own online store. 2009 - present.

Example of code:

Task Codewars: Matrix creation

                    
function getMatrix(number) {
    let result = [];
    for (let i = 0; i < number; i++) {
        result.push([]);
        for (let x = 0; x < number; x++) {
            x == i ? result[i].push(1) : result[i].push(0);
        }
    }
    return result;
}
                    
                    

My Projects:

World clocks
JS(Data), HTML, CSS
Project 1
Game Whack-a-mole
JS(local storage, Data), HTML, CSS
Project 2