Mykhailo Artemenko

Aspiring Frontend developer

My Photo

My Photo | Mykhailo Artemenko

Contacts:

Professional Summary (According to chatGPT):

Analytical and versatile professional with a strong interest in technology, scientific methods, and self-improvement.
Experienced in working with tools like Git, and knowledgeable in both software and engineering contexts.
Demonstrates strong problem-solving abilities, an eagerness to learn, and a commitment to precision and continuous development.
Balances technical insight with creative thinking, and approaches challenges with curiosity, resilience, and integrity.

Skills and Proficiency:

  • HTML5, CSS3
  • JavaScript Basics
  • Git, GitHub
  • VS Code

Languages:

  • English - Advanced (according to the online test at Efset logo)
  • Russian - Native
  • Ukrainian - Native
  • Czech - Basic

Education:

  • National Aviation University | Bachelor | 2018
  • National Aviation University | Bachelor | 2022

Code Example:

Convert an array of strings to array of numbers

Oh no! Some really funny web dev gave you a sequence of numbers from his API response as an sequence of strings! You need to cast the whole array to the correct type. Create the function that takes as a parameter a sequence of numbers represented as strings and outputs a sequence of numbers.

                
      function toNumberArray(stringarray) {
        return stringarray.map(n => +n)
      }
                
              

Done Projects: