Zharkevich Ilya

Objective

Junior Front-end Developer

Education

2016-2020 – International University «MITSO» Department of International Economic Relations and Management Specialization: Marketing

Work experience

  • 11.10.21 - 17.01.22 – Frontend Web Developer at the Firebird Tours:

    • Worked in Linux, with Jira and Confluence.
    • Deployed the project in Docker. Interacted with databases, PMA, Drupal.
    • Added new functionality and fixed bugs in JS, React.
    • Changed the styling of the application in SCSS. Used Grunt.

    My solutions successfully passed the review, testing and got into the release.

  • 31.07.20 - 12.03.21 – Training Front End – developer at the Coding School TeachMeSkills;

    During the course, I studied: HTML5, semantic layout; CSS3, SCSS, Flex, adaptive, responsive; BEM; Git; JavaScript (ES6), DOM, BOM; Webpack 5; React.

    • Made several landing pages.
    • Built a project with Webpack, React, worked with npm dependencies, eslint, prettier.

Code example

function getRandom() {
    return Math.round(Math.random());
}
                    
function foo() {
    return new Promise(function(res, rej) {
            setTimeout(function() {
                let success = getRandom();
                
                if(success) {
                    res('Hello');
                } else {
                    rej('Error');
                }         
            }, 2000)
    });
}
                    
foo().then( result => {
    return (result + ' Ilya');
}).then( str => {
    console.log(str)
}).catch(err => {
    console.error(err);
})