Maxim_
 Pudeev
                Frontend Developer
About me_
My name is Maxim. I am beginner web-developer from Nizhny Novgorod. I've been learning the basics of css and html for couple months. I think, finally, I find right language and direction, where I want to learn something new, improve my current knowledges, spend a lot of time and enjoy with it. I want to be Frontend Developer.
                        
                    Experience_
- 
                                JSC "Transneft - Upper Volga" | 2020 - 2022Technician of the Information Technology Department
- 
                                JSC "Transneft - Upper Volga" | 2022 - CurrentlyElectronics Engineer of the Information Technology Department
Skills_
- 
                            HTML5, CSS3, SASSJavaScriptGulp
- 
                            Figma, MarcyGit, GitHubSQL, MySQL, Microsoft SQL Server
Courses_
- RS Schools Course «JavaScript/Front-end. Stage 0»
Languages_
- Russian - native
- English - B1
Code_
                        
        var numbers = [4, 2, 5, 1, 3];
        numbers.sort(function(a, b) {
        return a - b;
        });
        console.log(numbers); // [1, 2, 3, 4, 5]