
Personal
Name
Ihor Melnychenko
Address
01001 Kyiv, Ukraine
Phone
+38-093-123-45-67
ihormelnychenko7@gmail.com
Date of birth
02-06-1990
Place of birth
Potsdam, Germany
Gender
Male
Nationality
Ukrainian
Marital status
Married
Driving license
B
Languages
Ukrainian: native
English: A2 (pre-intermediate)
WebSite
Interests
Voleyball, Music, Guitar
Ihor Melnychenko - Junior Frontend developer
About
Junior Frontend Developer with hands-on experience in building responsive, user-friendly web interfaces using HTML, CSS, and JavaScript and ReactJS. Developed multiple real-world projects, including a sustainability blog and client websites, demonstrating strong skills in layout, performance optimization, and UI/UX fundamentals. Familiar with modern frontend tools and practices such as Git, REST APIs, and Agile collaboration. Fast learner with a proactive attitude and passion for clean, accessible code.
Work experience
Course Developer
Technomatix, Kyiv
Jun 2018 - Aug 2021
- Development of interactive electronic training courses.
- Layout of educational materials (HTML, CSS, JavaScript, Articulate Storyline, Lectora).
- Integration of multimedia content (videos, animations, tests).
- Cooperation with designers and methodologists to create quality content.
Junior Web Developer
Technomatix (Moco), Kyiv
Aug 2021 - Feb 2022
- Development and support of the LMS platform for managing educational content.
- Layout and optimization of the platform interface (HTML, CSS, JavaScript).
- Scorm/xAPI integration to support e-learning standards.
- Optimizing platform performance, improving download speed.
Projects



Space Landing Page
A landing page for a space exploration project, built with React.js.
Open Project
LearnSphere
A learning management system for online courses, built with Next.js and Node.js.
Open ProjectEducation
Bachelor of Math
NSU named after M. Gogol, Nizhyn
Sep 2007 - Jul 2012
Faculty of Physics and Mathematics, teacher of mathematics and economics.
Frontend Development
Coursera, Kyiv
Jul 2018 - Oct 2018
Frontend Development.
Skills
-
HTML
-
CSS
-
JavaScript
-
React
-
Figma
-
Github
Code example
// Vowel count
function getCount(str) {
let arr = ['a', 'e', 'i', 'o', 'u'];
let result = 0;
let arrStr = str.split('');
arrStr.forEach((element) => {
if (arr.includes(element)) {
result += 1;
}
});
return result;
}
getCount("abracadabra"), 5