myPhoto

Alina Ushakova

Contacts:

Skills:

70%

70%

60%

60%

30%

30%

60%

60%

60%

60%

60%

60%

About me:

I had some experience in coding because I studied it at university, but I had to get my documents back after a year due to disease. Now I feel a bit better and don’t want to waste time, therefore I'm here and try to learn something new. Maybe I won't succeed but I'll do my best. And like the man said:

Success is walking from failure to failure with no loss of enthusiasm.

Work experience:

Unfortunately, I have no experience in this field.

The English language:

According to EFSET test my level is C1, but I think it's around B2.

Code example:

String.prototype.toJadenCase = function () {
      let arr = this.split(' ');
        let arrToString, result = '';
        
        for (let i = 0; i < arr.length; i++) {
          arrToString = String( arr[i] );
          arrToString = arrToString[0].toUpperCase() + arrToString.slice(1);
          result = result + arrToString + ' ';
        }
        return result.slice(0, result.length - 1);
      };

Education