back to main

welcome to my cv

I'm Valeria

about

about:
I'm front-end developer with experience in JavaScript, transitioning from SAP ABAP development. Passionate about expanding expertise in modern frameworks, including React, Vue, and Next.js.
education:
Polotsk State University
english level:
B1
skills:
  • JS
  • SAP ABAP
  • UI5
  • HTML5
  • CSS3
  • BEM
  • Git
  • Figma

code example

function brightest(colors) {
    let theBrightest = colors[colors.length - 1];
    let index = colors.length - 1;
  
    for (let i = colors.length - 2; i >= 0; i--) {
        if (getBrightest(colors[i]) >= getBrightest(theBrightest)) {
            theBrightest = colors[i];
            index = i;
        }
    }
    
    return colors[index];
  }

function getBrightest(color) {
    return Math.max(+`0x${color.substring(1, 3)}`, +`0x${color.substring(3, 5)}`, +`0x${color.substring(5, 7)}`);
}