rsschool-cv

Mykhailo Artemenko

Aspiring Frontend developer


My Photo


Contact information:

Phone: +38 999 9999999
E-mail: artemenko.mik@gmail.com
Telegram: @dominosl
LinkedIn


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:


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)
}

Languages: