Junior Javascript Frontend Developer

About me

I graduated from university in 2019 as an Electronic Engineer, however I have always been interested in programming. I was familiar with Pascal and C++ - we coded in it in school and University, but when I later started learning Java, I understood that I'm more attracted to web development.

I have a B2 level in English. I lived in the British family in Eastbourne for a month and studied there at an English school.

My strengths are responsibility, fast learning and team working as well as problem solving.

Education

2014 - 2019 Saint Petersburg Electrotechnical University "LETI" Faculty of Electronics, Bachelor's Degree in Electronics and Nanoelectronics

Languages

English: B2 Upper-Intermediate

Courses

Soft Skills

Code example

 String.prototype.toJadenCase = function () {
    let words = this.split(" ");
        for (let i = 0; i < words.length; i++) {
            words[i] = words[i][0].toUpperCase() + words[i].substr(1);
            }
        return words.join(" ");
    }