Summary:
I start new page of my life and my goal is to find a new exciting sphere to realize my abilities. I have been doing my own business for 5 years, I owned food store. I got a lot of experience in communication and process setting. I like to learn something new and set new challenges for myself. I hope to find my passion in the field of front-end development.
Education:
- -Belarusian State Economic University,
- Minsk, of Belarus - 2012-2014
- Profession: Jurist
- -Belarusian State Economic University,
- Minsk, of Belarus - 2009-2013
- Profession: Economist – Manager
Skills:
- Basics of HTML, CSS
- JavaScript (Fundamentals, ES6+, DOM, JSON)
- Git/GitHub
- React JS
- Windows OS
- Basics of Figma and Miro
Languages:
- Russian(as native)
- English (A2)
English:
General English Language Cours at Upper Intermediate level (B2) in Chamber College, Malta - august 2012
Code example:
function copySorted(arr) {
return arr.slice().sort();
}
let arr = ["HTML", "JavaScript", "CSS"];
let sorted = copySorted(arr);
alert( sorted );
alert( arr );