I’m a frontend developer with a strong hands-on background and a deep theoretical foundation. Proficient in HTML, CSS, SCSS, and modern responsive web development. Experienced in adaptive, cross-browser, semantic, and pixel-perfect layout with advanced animations.
I possess solid JavaScript knowledge — I’ve solved and analyzed a wide range of problems, including multiple implementations and performance measurements. Confident working with React and TypeScript, implementing routing, and managing state with Redux and RTK Query.
I enjoy exploring language internals, and writing clean, efficient, and maintainable code.
function sortArray(arr) {
const filteredOdd = arr.filter(el => el % 2).sort((a, b) => a - b);
let result = [...arr];
for (let i = 0, x = 0; i < result.length; i++) {
if (result[i] % 2) {
result[i] = filteredOdd[x];
x++;
}
}
return result;
}