Contact
about myself
I choose the direction of web-development because I like to constantly learn and see the result of my work visually. It includes many areas: design, programming, SEO.My goal is to become a good developer. I believe that my discipline and interest in learning will help me reach my goal.
Skills
- HTML
- CSS/SASS
- Git
- VSCode
Education
- FEFU (mathematics and computer science)
- ITGIRLSCHOOL course
- English-A1
Code
KATA Codewars: Complete the square sum function so that it squares each number passed into it and then sums the results together.
function squareSum( numbers ) { return numbers.map( el=> el * el ).reduce(( x, y )=> x + y,0) }