photo

Dark mode

Dmitry Khomichenko

Front-End Developer

About me

I'm on my way to becoming a front-end developer. Since I want to create quality products I'm interested in practicing in order to gain new knowledge, improve my skills and get a job as a result. Feel free to contact me.

Projects

Code example


        function deepCount(a){
          let deepLength = 0
          
          for (let i = 0; i < a.length; i++) {
            deepLength++
            if (Array.isArray(a[i])) {
              deepLength += deepCount(a[i])
            }
          }
          
          return deepLength
        }
      

Education

Skills