home

Hack Your Future


Mykhailo Shevchenko


MykhailoShevchenko

Junior Full Stack Developer


Contact information


About Myself

Hello, I’m a passionate front-end developer from Ukraine. I am satisfied with my profession and constantly improving my skills. I enjoy learning new tools and new technologies.


Relevant Skills


Code example

Complete the square sum function so that it squares each number passed into it and then sums the results together. For example, for [1, 2, 2] it should return 9

function squareSum(numbers) {
  let result = 0;
  for (let i = 0; i < numbers.length; i++) {
    result += numbers[i] * numbers[i];
  }
  return result;
}

Work Experience


Education History


My Languages

English B1. Now I live in the Netherlands and attend various English courses.