Profile
I'm just getting started as a front-end developer. I love to solve business problems by fusing creativity, innovation and effective communication.
Contacts
- victoria.chernikova@outlook.com
- vichernikova
- victoria.chernikova@outlook.com
Skills
- HTML
- CSS, SASS
- JavaScript
- Git/GitHub
- Atlassian Jira
- SQL (Basics)
- Figma
- Bootstrap
Languages
- English - B1+
- Italian - B1
Projects
Experience
А-Кvadratum, Legal Bureau
CEO, Apr 2017 to Dec 2021
-
legal support of
- resident companies of the HTP (High-Tech Park)
- eСommerce projects
- establishing, maintaining and closing business in Belarus
Krinitsa, OJSC
Head of Legal Office, Aug 2006 to Sep 2016
- legal support of enterprise operations
- representing and defending interests of the company in state authorities and courts
- performance of contractual and claim-related work
Education
-
2022
- MDN Web Docs
- Pluralsight
- Codecademy
- Git
- JavaScript: The Definitive Guide, 7th Edition by David Flanagan
- Code Basics
- JavaScript.ru
- CSS: The Definitive Guide, 4th Edition by Eric A. Meyer
-
2002 to 2007
- Faculty of Management and Social Technologies Belarusian State University
Code examples
function squareSum(numbers) { let sum = 0; numbers.forEach(number => { sum += (number * number) }) return sum; } const stringToNumber = function(str) { return parseInt(str); }