Olga Kitel

My photo

Contacts

About me

I'm 28 years old. I was a doctor, but one day I realized that I do not love my work. Steve Jobs said:

“ The only way to do great work is to love what you do. If you haven't found it yet, keep looking. Don't settle.”

So I decided to change my life and became a front-end developer. I'm interested in quick and intensive start of my new life.

Skills

Learning:

Samples of code

Task from codewars.com


<script>
    function mygcd(x,y){
        while (x != 0 && y != 0) {
            if (x > y) {
                x = x % y;
            } else {
                y = y % x;
            }
        }
        return (x+y);
    }
</script>
        

Experience

Coming soon ... 💻

Education

Self-education w3school.com

Languages

  1. English B2 (TOEFL iBT 90 out of 120)
  2. Russian (native)
  3. Polish B1
  4. Italian A2