Vadim Chervoniak, Full Stack Developer

me

Contacts

About Me

I’m a 37 y/o full-stack developer from Ukraine with focus on Vue, Nuxt, React, Node.js, and a polyglot in modern web technologies.

Skills

Code example


function digitalRoot(n) {
  // Base case: if n is a single-digit number, return n
  if (n < 10) {
    return n;
  } else {
    // Calculate the sum of the digits
    const sum = (n + '').split('').reduce((acc, cur) => acc + +cur, 0);
    // Recursive call with the new sum
    return digitalRoot(sum);
  }
}
      

Projects

Education

December 2022 - June 2023
Mate academy
Full stack Software Development Course
Focused on JavaScript, HTML, CSS, React, Node.js, and more

March 2021 - June 2021
EPAM University
Front-end Spring Course
Studied Git, CSS (including Flexbox and Grid), JavaScript, DOM, and Object-Oriented Programming

August 2005 - July 2010
Chernivtsi National University
Department of Applied Physics and Computer Sciences
Bachelor’s degree in Applied Physics & Computer Science

Languages