avatar

VITALIY NIKOLAENKO

Junior Front-end Developer

CONTACTS

ABOUT ME

I am 41 years old, I am an entrepreneur in the field of catering and production. I want to get a new profession in which I can constantly develop, that's why I'm here.

SKILLS

  • HTML
  • CSS
  • JavaScript
  • Git

LANGUAGE

  • English A2
  • Russian Native

Education

Code

  • Largest Square Inside A Circle KATA from CODEWARS: Determine the area of the largest square that can fit inside a circle with radius r.

    function areaLargestSquare(r) { 
        return Math.pow(r, 2) * 2; 
    }
  • String ends with? KATA from CODEWARS: Complete the solution so that it returns true if the first argument(string) passed in ends with the 2nd argument (also a string).

    function solution(str, ending) {
        return str.endsWith(ending)
    }
                                

Projects