Mykhailo Artemenko
Aspiring Frontend developer
My Photo

Contacts:
- Telephone: +389999999999
- E-mail: artemenko.mik@gmail.com
- Telegram: @Domino_Sl
- Linkedin: Mykhailo Artemenko
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:
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)
}