photo name

ARINA SHALKEVICH

JUNIOR FRONTEND DEVELOPER

Courses


  • HTML and CSS in university
  • RS Schools Course «JavaScript/Front-end. Stage 0» (in progress)
  • HTML and CSS Tutorials on w3schools
  • JavaScript Manual on learnjavascript.ru

CONTACT INFO



SKILLS


  • HTML5
  • CSS3
  • JavaScript Basics
  • Git, GitHub
  • VS Code
  • Adobe Photoshop


Languages


  • English – A2
  • Russian – Native

social media:



ABOUT ME


My best feature is independence. While all my classmates ask me how to solve the problem, I already solve it by myself. I'm 25 and I have a lot of experience in different specialties. But at some point I realized that programming is my cup of tea.


MY STRENGTHS


  • I'm a fast learner;

  • I have well-developed soft skills;

  • I can boast of logical thinking;

  • And last but not least: I'am a skilled Google user.


CODE EXAMPLE


Digits explosion KATA from CODEWARS: Given a string made of digits [0-9], return a string where each digit is repeated a number of times equals to its value.

function explode(s) {
    let result = '';

    for(let i = 0; i < s.length; ++i) {
        if (+s[i] === 0){
          result = result + '';
        } else {
          result = result + s[i].repeat(+s[i]);
        }
    }
return result;
}