About myself

Hello! I'm 37 years old. I have worked as a lawyer about 14 years. I was a director of my own company, then was a head of legal department of local construction company. Today I am a leading lawyer in one of the Rosatom holding's company. I have do it my best! Some years ego interested in web-development. I think it can gives me more creative work, and I think technologies and programming are the futures on labour market. Honestly, I think programming is amazing! I want to became a developer, and I think it's possible for me. It's very hard chellenge for me, but I can't give up on my dream! I'm a tough guy, and I'll do it! I need more knowledge for my goal. Therefore I'am learning in RSschool. Wish me luck!

Education

Herzen State Pedagogical University of Russia, St.Petersburg. 2001 - 2006, Law School, specialist, Civil rights lawyer.

Skills

  • HTML5 and CSS3
  • JavaScript Basics
  • Git and github
  • BEM
  • VScode
  • English B1

Code example

Javascript task is to write a function that takes a string and return a new string with all vowels removed. (Note: for this kata y isn't considered a vowel.)

                        
function disemvowel(str) {
    const vowels = ['a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U'];
    let result = '';
    for (let char of str) {
        if(!vowels.includes(char)) {
            result += char;
        }
    }
    return result;
}