Me

Victoria Chernikova

Junior Frontend Developer

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

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

  • 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);
}