Yauheni Shypila

Beginner Front-End Developer

avatar

Contacts:

My projects:

My Goals:

I really like to learn something new. My goal is to become a software developer and I will achieve it.

My Skills:

I was learning front end. I have studied HTML, SCC and JS basics. I have studied the JAVA basics too. I was working in Intellij IDEA, WEB Storm and Brackets IDEs.

Some JS code example:

function camelize(str) {
   let arr = str.split('-');
   arr[0] = arr[0].toLowerCase();
   for (let i = 1; i < arr.length; i++) {
       let a=arr[i];
       arr[i]=a[0].toUpperCase()+a.slice(1);
   }
   return (arr.join(''));
}